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.
摄像机通过本地端口上的 UDP 将视频数据作为 RTP 发送给我。
ffmpeg 是否支持将输入(H.264 有效负载)自动转换为 MP4 ?
怎么做 ?
这应该有效:
ffmpeg -i udp://localhost:1234 -vcodec copy output.mp4
或尝试:
ffmpeg -i rtp://localhost:1234 -vcodec copy output.mp4
将 1234 替换为您的端口。我假设输入已经在 H.264 中,如果没有,请删除 -vcodec 副本。