I want to loop push a part of video, such as the start 5 senonds, by cmd:
ffmpeg -re -stream_loop -1 -ss 0 -t 5 -i xxx.mp4 -c copy -f flv rtmp://xxx
Run the command, after 5 senonds error raise:
[flv @ 000001c7b4a0f040] Failed to update header with correct duration.4.7kbits/s speed= 1x
[flv @ 000001c7b4a0f040] Failed to update header with correct filesize.
It works fine if first using ffmpeg cut the video then pushing with out -t
. Is there a way to do this together? Because the input file may be a file or a network stream.
I want to loop push a part of video, such as the start 5 senonds, by cmd:
ffmpeg -re -stream_loop -1 -ss 0 -t 5 -i xxx.mp4 -c copy -f flv rtmp://xxx
Run the command, after 5 senonds error raise:
[flv @ 000001c7b4a0f040] Failed to update header with correct duration.4.7kbits/s speed= 1x
[flv @ 000001c7b4a0f040] Failed to update header with correct filesize.
It works fine if first using ffmpeg cut the video then pushing with out -t
. Is there a way to do this together? Because the input file may be a file or a network stream.
1 Answer
Reset to default -1Try this:
ffmpeg -i xxx.mp4 -t 5 -c copy first5s.mp4
ffmpeg -re -stream_loop -1 -i first5s.mp4 -c copy -f flv rtmp://xxx
The "-t" has been applied to the input and is causing problems with FLV streaming. The FLV format expects a known duration and looping a segment on the fly might not work correctly.