Created
October 7, 2017 10:44
-
-
Save koron/79042f08840cbd6da8f3781d824413a3 to your computer and use it in GitHub Desktop.
ラズパイ3で比較的低遅延な HLS をするための ffmpeg のオプションメモ
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/sh | |
ffmpeg -f alsa -i hw:1 -s 320x240 -i /dev/video0 \ | |
-vcodec h264_omx -acodec aac \ | |
-f segment \ | |
-segment_format mpegts \ | |
-segment_time 4 \ | |
-segment_list_size 8 \ | |
-segment_list_type m3u8 \ | |
-segment_list stream.m3u8 \ | |
-segment_list_flags +live \ | |
stream%05d.ts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment