Created
March 31, 2016 03:31
-
-
Save ianchen06/f8aaa829855da62a2b086c30ea18dcda to your computer and use it in GitHub Desktop.
ffmpeg hls live stream creator
This file contains hidden or 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
| #!/bin/bash | |
| ffmpeg -v verbose -f video4linux2 -vcodec mjpeg -s 640x480 -r 5 -i /dev/video0 -c:v libx264 -crf 18 -profile:v baseline -maxrate 400k -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /var/www/live/mystream.m3u8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment