Geotagging captured video

Does anyone have an idea on how to geotag capture a video? I checked it for images http://developer.android.com/reference/android/media/ExifInterface.html

but can't learn much about the video. I also check the Android app https://market.android.com/details?id=com.dailyroads.v&hl=en

+4
source share
1 answer

This is the class used to store video metadata: MediaMetadataRetriever

As you can see, Android does not support Geotagging for video.

So in short:

  • Containers
  • 3gp and mp4 cannot store GeoTagging information
  • mov files can.
  • Android does not support video geotagging. The position of the video geo is saved, but in the internal Android database.
+1
source

Source: https://habr.com/ru/post/1383619/


All Articles