3

I'm trying to stream from local file to icecast. When I'm running this command

ffmpeg -i .\rec_20190120-220001.opus -c:a libvorbis -b:a 500k -f ogg -content_type application/ogg icecast://source:test@localhost:8000/stream

ffmpeg encodes fastest as it can rather than 1x speed and it's too fast to streaming. How to limit encoding speed

1 Answer 1

5

Add -re to the input, which limits the reading speed of the input.

ffmpeg -re -i .\rec_20190120-220001.opus -c:a libvorbis ...

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .