Created
July 20, 2017 10:34
-
-
Save SkaTeMasTer/1cfe5ed3f75f8c1bf39db34e01624619 to your computer and use it in GitHub Desktop.
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 | |
base="/data/live" | |
cd $base | |
raspivid -n -w 720 -h 405 -fps 25 -vf -t 86400000 -b 1800000 -ih -o - \ | |
| ffmpeg -y \ | |
-i - \ | |
-c:v copy \ | |
-map 0:0 \ | |
-f ssegment \ | |
-segment_time 4 \ | |
-segment_format mpegts \ | |
-segment_list "$base/stream.m3u8" \ | |
-segment_list_size 720 \ | |
-segment_list_flags live \ | |
-segment_list_type m3u8 \ | |
"segments/%08d.ts" | |
trap "rm stream.m3u8 segments/*.ts" EXIT | |
# vim:ts=2:sw=2:sts=2:et:ft=sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment