Skip to content

Instantly share code, notes, and snippets.

View greenlaver's full-sized avatar
💾
Floppy

Aonori greenlaver

💾
Floppy
View GitHub Profile
@koron
koron / live-raspi3.sh
Created October 7, 2017 10:44
ラズパイ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 \