7

我需要从 Android 上的视频文件中读取元数据。我查看了通过MediaStore.Video.VideoColumnsandroid.media.MediaMetadataRetriever提供的标签。但是,这两个都不能让我访问一些额外的标签,像Phil Harvey 的 ExifTool这样的工具可以访问这些标签。

我最感兴趣的是相机品牌/型号、压缩机 ID 标签,但我真的很想知道如何访问其他标签。

android 中是否存在用于读取这些附加标签的 API,或者我是否正在考虑自己实现特定于文件格式的本机元数据解析器?

这里是 ExifTool 为使用 iPhone 相机拍摄的视频生成的输出:

ExifTool Version Number         : 9.28
File Name                       : iPhone.MOV
Directory                       : .
File Size                       : 74 kB
File Modification Date/Time     : 2013:04:30 14:41:24+09:00
File Access Date/Time           : 2013:04:30 14:41:24+09:00
File Creation Date/Time         : 2013:04:30 14:41:24+09:00
File Permissions                : rw-rw-rw-
File Type                       : MOV
MIME Type                       : video/quicktime
Major Brand                     : Apple QuickTime (.MOV/QT)
Minor Version                   : 0.0.0
Compatible Brands               : qt
Movie Data Size                 : 71757
Movie Header Version            : 0
Modify Date                     : 2013:04:30 05:40:07
Time Scale                      : 600
Duration                        : 5.36 s
Preferred Rate                  : 1
Preferred Volume                : 100.00%
Preview Time                    : 0 s
Preview Duration                : 0 s
Poster Time                     : 0 s
Selection Time                  : 0 s
Selection Duration              : 0 s
Current Time                    : 0 s
Next Track ID                   : 3
Track Header Version            : 0
Track Create Date               : 2013:04:30 05:40:06
Track Modify Date               : 2013:04:30 05:40:07
Track ID                        : 1
Track Duration                  : 5.34 s
Track Layer                     : 0
Track Volume                    : 100.00%
Balance                         : 0
Audio Channels                  : 1
Audio Bits Per Sample           : 16
Audio Sample Rate               : 44100
Audio Format                    : chan
Matrix Structure                : 0 1 0 -1 0 0 272 0 1
Image Width                     : 480
Image Height                    : 272
Clean Aperture Dimensions       : 480x272
Production Aperture Dimensions  : 480x272
Encoded Pixels Dimensions       : 480x272
Media Header Version            : 0
Media Create Date               : 2013:04:30 05:40:06
Media Modify Date               : 2013:04:30 05:40:07
Media Time Scale                : 600
Media Duration                  : 5.37 s
Media Language Code             : und
Graphics Mode                   : ditherCopy
Op Color                        : 32768 32768 32768
Handler Class                   : Data Handler
Handler Vendor ID               : Apple
Handler Description             : Core Media Data Handler
Compressor ID                   : avc1
Source Image Width              : 480
Source Image Height             : 272
X Resolution                    : 72
Y Resolution                    : 72
Compressor Name                 : H.264
Bit Depth                       : 24
Video Frame Rate                : 30
Camera Identifier               : Back
Frame Readout Time              : 28512 microseconds
Make                            : Apple
Software Version                : 6.1.3
Create Date                     : 2013:04:30 14:39:40+09:00
GPS Coordinates                 : 37 deg 15' 19.08" N, 127 deg 2' 59.28" E, 43 m Above Sea Level
Model                           : iPhone 4S
Handler Type                    : Metadata Tags
Make (und-IN)                   : Apple
Creation Date (und-IN)          : 2013:04:30 14:39:40+09:00
GPS Coordinates (und-IN)        : 37 deg 15' 19.08" N, 127 deg 2' 59.28" E, 43 m Above Sea Level
Software (und-IN)               : 6.1.3
Model (und-IN)                  : iPhone 4S
Avg Bitrate                     : 107 kbps
GPS Altitude                    : 43 m
GPS Altitude Ref                : Above Sea Level
GPS Latitude                    : 37 deg 15' 19.08" N
GPS Longitude                   : 127 deg 2' 59.28" E
GPS Position                    : 37 deg 15' 19.08" N, 127 deg 2' 59.28" E
Image Size                      : 480x272
Rotation                        : 90
4

1 回答 1

10

这个库将返回所有可用的元数据标签(免责声明:我写的)。如果要启用对其他格式的支持,也可以手动构建它。http://github.com/wseemann/FFmpegMediaMetadataRetriever

于 2013-05-23T14:10:04.403 回答