我有一组图像,我想使用ffmpeg将其转换为视频。以下命令完全正常:
ffmpeg -y -i frames/%06d.png -c:v huffyuv -pix_fmt rgb24 testout.mkv
我在二进制文件中有一些元数据,我想附加视频。我尝试了以下操作,但它给了我一个错误:
ffmpeg -y -i frames/%06d.png -c:v huffyuv -pix_fmt rgb24 -attach mybinaryfile -metadata:s:2 mimetype=application/octet-stream testout.mkv
这是错误:
[matroska @ 0x656460] Codec for stream 1 does not use global headers but container format requires global headers
[matroska @ 0x656460] Attachment stream 1 has no mimetype tag and it cannot be deduced from the codec id.
Output #0, matroska, to 'testout.mkv':
Metadata:
encoder : Lavf56.33.101
Stream #0:0: Video: huffyuv (HFYU / 0x55594648), rgb24, 640x640, q=2-31, 200 kb/s, 25 fps, 1k tbn, 25 tbc
Metadata:
encoder : Lavc56.39.100 huffyuv
Stream #0:1: Attachment: none
Metadata:
filename : 2ceb-1916-56bb-3e10
Stream mapping:
Stream #0:0 -> #0:0 (png (native) -> huffyuv (native))
File 2ceb-1916-56bb-3e10 -> Stream #0:1
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
如果有人能向我解释我做错了什么,那就太好了。)
答案 0 :(得分:7)
示例:
ffmpeg -y -i frames/%06d.png -c:v huffyuv -pix_fmt rgb24 -attach mybinaryfile \
-metadata:s:t mimetype=application/octet-stream testout.mkv
此命令将设置所有附件(t
)流(s
)的元数据。如果您有多个附件,并且元数据不同,那么您必须更加具体,例如:
-metadata:s:t:0 mimetype=text/plain \
-metadata:s:t:1 mimetype=application/gzip
这会将第一个附件的元数据设置为mimetype=text/plain
,将第二个附件的元数据设置为mimetype=application/gzip
。请记住,流索引从0
开始,因此第一个流被标记为0
。
使用-metadata:s:2
(似乎已从文档中逐字复制)设置第三个流的元数据,无论流类型如何(因为没有说明符),但输出只包含两个流。 / p>
您可能会看到以下内容:
Output #0, matroska, to 'output.mkv':
...
Stream #0:1: Attachment: none
Metadata:
filename : 2ceb-1916-56bb-3e10
mimetype : application/octet-stream
Attachment: none
并不意味着没有附件,但没有与之关联的格式,因此可以忽略它。
Stream specifiers以及-attach
,-metadata
和-map_metadata
上的ffmpeg
documentation了解详情。