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コピーを削除してください。