Android H.263 还是 H.264 文件?
有没有办法找到 Android 上视频文件的编解码器差异?我需要查明文件编码为 H.263 还是 H.264? mime 类型始终是 video/3gp,因此没有用。
我读过一些有关 magic cookie 的内容,但找不到 H.263 编码文件的 magic cookie 格式。有什么想法吗?
Is there a way to find the codec difference for a video file on Android? I need to find out if the file is encoded as H.263 or as H.264? The mime type is always video/3gp, so that's not useful.
I read something about magic cookies, but I cannot find the magic cookie format for H.263 encoded files. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ffmpeg 来获取文件的元数据信息。
尝试:
它应该在 Input #0 标记之后显示元数据信息。
You can use ffmpeg for meta-data information of file.
Try:
It should display the metadata information just after the Input #0 tag.