ffmpeg错误:cur_dts无效

时间:2017-12-03 20:49:44

标签: linux audio video ffmpeg

我尝试使用以下命令从我的网络摄像头录制视频和音频:

ffmpeg -f v4l2 -input_format mjpeg -s uhd2160 -i /dev/video0 -f pulse -channels 1 -i default video.mpg

但它似乎陷入输出底部的无限循环中,如下所示:

cur_dts is invalid (this is harmless if it occurs once at the start per stream)
cur_dts is invalid (this is harmless if it occurs once at the start per stream)
cur_dts is invalid (this is harmless if it occurs once at the start per stream)
...

启用-report标记的完整输出:https://pastebin.com/bV1ePJ2u

我可以单独录制视频和音频:

ffmpeg -f v4l2 -input_format mjpeg -s uhd2160 -i /dev/video0 video.mpg
ffmpeg -f pulse -channels 1 -i default audio.wav

那么这可能是什么问题?我在Ubuntu 16.04内核4.14.1

1 个答案:

答案 0 :(得分:0)

您可以使用此命令将它们合并为一个文件(在 Windows 操作系统的 cmd 中)

        C:/this is just path of ffmpeg lib/ffmpeg_shared/ffmpeg/bin/ffmpeg -i "video_part.ts" -i "audio_part.aac" -map 0:V:0 -map 1:a:0 -c copy -f mp4 -movflags +faststart "./new/combined_file_name.mp4"