Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从 WebM 文件中提取 VP9 视频流?只是原始的 VP9 编码数据?我的意思是您通常用作 VP9 解码器输入的数据?
哪种工具最适合执行此操作?ffmpeg?
VP9 没有纯原始比特流格式。最接近的是轻量级IVF格式 - 每帧 32 字节全局报头 + 12 字节报头。
利用
ffmpeg -i input.webm -c copy stream.ivf