本帖最后由 chiunownow 于 2023-7-19 20:00 编辑
碰上某种源视频文件错误,可能会导致ffmpeg持续100%工作不停止
[vost#0:0/libx264 @ 0x14c98f3e0680] Frame rate very high for a muxer not efficiently supporting it.
Please consider specifying a lower framerate, a different muxer or setting vsync/fps_mode to vfr
[libx264 @ 0x14c98f88b800] MB rate (432000000) > level limit (16711680)
解决办法
ffmpeg -protocol_whitelist 'file,crypto,data,https,tls,tcp' -vsync 2 -i $temp_path$i".m3u8" $temp_path$i".mp4"
# vsync方法改为vfr
还可以再加一个兜底,在自动化里或者脚本里pikll -9 ffmpeg
|