Skip to content

Instantly share code, notes, and snippets.

@koron
Created October 7, 2017 10:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koron/79042f08840cbd6da8f3781d824413a3 to your computer and use it in GitHub Desktop.
Save koron/79042f08840cbd6da8f3781d824413a3 to your computer and use it in GitHub Desktop.
ラズパイ3で比較的低遅延な HLS をするための ffmpeg のオプションメモ
#/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