Created
May 3, 2024 22:49
-
-
Save zopieux/b6391b4ea64fe153a0783e79323bf62a to your computer and use it in GitHub Desktop.
Chromecast friendly HLS from any live input (latency ~6s)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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