Skip to content

Instantly share code, notes, and snippets.

@ianchen06
Created March 31, 2016 03:31
Show Gist options
  • Select an option

  • Save ianchen06/f8aaa829855da62a2b086c30ea18dcda to your computer and use it in GitHub Desktop.

Select an option

Save ianchen06/f8aaa829855da62a2b086c30ea18dcda to your computer and use it in GitHub Desktop.
ffmpeg hls live stream creator
#!/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