diff --git a/Live-vpx-transcoding-plus-packaging.md b/Live-vpx-transcoding-plus-packaging.md index 2c2b4c3..d1a8837 100644 --- a/Live-vpx-transcoding-plus-packaging.md +++ b/Live-vpx-transcoding-plus-packaging.md @@ -13,8 +13,8 @@ mkfifo pipe1 ## Transcoding Command ``` -ffmpeg -i udp://225.1.1.8:8001?localaddr=172.29.46.122 -g 90 -speed 4 -threads 8 -c:v libvpx \ - -f webm pipe: > pipe1 +ffmpeg -i udp://225.1.1.8:8001?localaddr=172.29.46.122 -g 90 -speed 4 -threads 8 \ + -c:v libvpx -f webm pipe: > pipe1 ``` Option `-speed 4` tells the encoder to encode really fast, sacrificing quality. This is needed otherwise ffmpeg is not fast enough to keep up with the live stream.