A drop-in replacement for ffmpeg
that is tailored to live-streaming: it allows for dynamically changing encoding settings (e.g. bitrate).
The main use case this was implemented for is IRL streaming. For example:
- When the internet connection is of variable bandwidth: one may dynamically adjust the bitrate according to available channel.
- When the recoding equipment is overheating, it is possible to dynamically enable a pass-through (and disable recoding until the equipment would cool down).
But actually, if you got into using ffstream
instead of ffmpeg
you may want to consider writing yourown tool that is tailored for your needs by just using avpipeline
directly.
This is supposed to be a kick-in replacement. So for example if you have:
ffmpeg -i rtmp://127.0.0.1:1937/test/stream0 -c:v libx264 -f flv rtmp://127.0.0.1:1937/test/stream1
you should be able to just replace ffmpeg
with ffstream
:
ffstream -i rtmp://127.0.0.1:1937/test/stream0 -c:v libx264 -f flv rtmp://127.0.0.1:1937/test/stream1
However, it won't work with various fancy functionality like filters, yet (to be implemented).
But since you switched to ffstream
, now you can add flag -listen_control
which would open a socket and listen for incoming requests live, e.g.:
ffstream -listen_control unix:/tmp/ffstream.sock -i rtmp://127.0.0.1:1937/test/stream0 -c:v libx264 -f flv rtmp://127.0.0.1:1937/test/stream1
After that you may use ffstreamctl
to manage the actively running ffstream
, for example:
<TBD>
For debugging, you may:
- Add verbosity (e.g. with
-v trace
), e.g.:
ffstream -v trace -i rtmp://127.0.0.1:1937/test/stream0 -c:v libx264 -f flv rtmp://127.0.0.1:1937/test/stream1
- Add the flag
-listen_net_pprof
, e.g.:
ffstream -v trace -listen_net_pprof 0.0.0.0:12345 -i rtmp://127.0.0.1:1937/test/stream0 -c:v libx264 -f flv rtmp://127.0.0.1:1937/test/stream1
- Collect all logs to a centralized logging server (for investigating rarely occurring problems), e.g.:
ffstream -v trace -logstash_addr udp://my.logstash.server:9600 -sentry_dsn https://my.sentry.server/URI -i rtmp://127.0.0.1:1937/test/stream0 -c:v libx264 -f flv rtmp://127.0.0.1:1937/test/stream1