diff options
author | Lars Hoogestraat <lars@hoogi.eu> | 2020-06-20 17:52:42 +0200 |
---|---|---|
committer | Lars Hoogestraat <lars@hoogi.eu> | 2020-06-20 17:52:42 +0200 |
commit | 633722220ba451d265b69b329ad477b7d0c7e45b (patch) | |
tree | cf3be648bff2b9a7b9fc6750ce7707459757a0ed /ffmpeg.sh | |
parent | 2a8ee52c02a05459363f1f3812b8b454f2463a56 (diff) | |
parent | cdd80eb611e3838b6e6eb9e624ecdba4dfb9d873 (diff) |
Merge branch 'master' of https://git.hoogi.eu/snafu/nistkasten
Diffstat (limited to 'ffmpeg.sh')
-rwxr-xr-x | ffmpeg.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ffmpeg.sh b/ffmpeg.sh deleted file mode 100755 index 1a9c7be..0000000 --- a/ffmpeg.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -OMX_PARAMS="-s 1280x720 -preset fast -b:v 1024k" - -/usr/bin/ffmpeg \ - -y \ - -f v4l2 \ - -video_size 1280x720 \ - -framerate 25 \ - -i /dev/video0 \ - -live 1 \ - -vcodec h264_omx ${OMX_PARAMS} \ - -keyint_min 150 \ - -g 150 \ - -tune zerolatency -tune fastdecode \ - -dash 1 \ - -min_seg_duration 4000 \ - -use_template 1 \ - -use_timeline 1 \ - -remove_at_exit 1 \ - -window_size 20 \ - -live 1 \ - /var/www/nistkasten/video/nistkasten_live.mpd |