Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zopieux/b6391b4ea64fe153a0783e79323bf62a to your computer and use it in GitHub Desktop.
Save zopieux/b6391b4ea64fe153a0783e79323bf62a to your computer and use it in GitHub Desktop.
Chromecast friendly HLS from any live input (latency ~6s)
ffmpeg -y -f lavfi -i color=c=black:s=128x128:r=25/1 \
-f pulse -ac 2 -i pulse[or source name] \
-fflags nobuffer -vcodec libx264 -r 24 -preset superfast -pix_fmt yuv420p -g 6 \
-hls_list_size 3 -hls_time 1 -hls_flags delete_segments -strict -2 out.m3u8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment