Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Geotagging a captured video

Tags:

android

Any one have idea about how to geotag the capture video? I have check it for images http://developer.android.com/reference/android/media/ExifInterface.html

but can not find much about the video. I have also check android app https://market.android.com/details?id=com.dailyroads.v&hl=en

like image 930
Sameer Z. Avatar asked Nov 13 '22 13:11

Sameer Z.


1 Answers

This is the class used to store meta data about the video: MediaMetadataRetriever

As you can see that Android does not support Geotagging for videos.

So in summary:

  • 3gp and mp4 containers can't hold GeoTagging information
  • mov files can.
  • Android does not support geotagging for videos. The video's geo position is stored, but in the Android's internal database.
like image 94
Reno Avatar answered Nov 16 '22 03:11

Reno