作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从电影中剪掉 10 秒并转换为 MP4。但有时我会遇到如下错误:
Duration: 00:08:52.40, start: 0.000000, bitrate: 1126 kb/s
Stream #0:0: Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, stereo, fltp, 96 kb/s
Stream #0:1: Video: wmv3 (Main) (WMV3 / 0x33564D57), yuv420p, 640x480, 1000 kb/s, SAR 1:1 DAR 4:3, 29.97 tbr, 1k tbn, 1k tbc
[mp4 @ 0x5614bbea1300] Could not find tag for codec wmv3 in stream #0, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argumentStream mapping:
ffmpeg -i input.wmv -ss 00:00:00 -to 0 -c copy 0:00:10 output.mp4
最佳答案
Could not find tag for codec wmv3 in stream #0, codec not currently supported in container
您在不重新压缩的情况下修剪文件,并且 ffmpeg 不会将 Windows Media 9 流写入 MP4,因此请重新压缩:
ffmpeg -i input.wmv -ss 00:00:00 -to 00:00:10 output.mp4
ffmpeg -i input.wmv -ss 00:00:00 -to 00:00:10 -c copy output.mkv
关于ffmpeg 找不到编解码器来剪切 10 秒的电影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47377484/
我是一名优秀的程序员,十分优秀!