我正在尝试使用 ffmpeg 分段器将 ogg 视频分割成 10 秒的 ogg 视频片段。
ffmpeg -i www/VideoPlayer/Videos/wr3libvorbis.ogg -map 0 -f segment -segment_time 10 -segment_list www/VideoPlayer/Videos/wr3libvorbis.m3u8 -acodec libvorbis www/VideoPlayer/Videos/wr3libvorbis%03d.ogg
我收到以下错误:
[ogg @ 0x9bda5e0] Application provided invalid, non monotonically increasing dts to muxer in stream 1: 567505 >= 567505
av_interleaved_write_frame(): Invalid argument
我-acodec flaac
可以成功分割视频。我需要提供哪些额外选项才能分割成 vorbis 音频编解码器视频?