aboutsummaryrefslogtreecommitdiff
path: root/example-scripts/ffmpeg/record-mixed-ffmpeg-segmented-timestamps.sh
blob: f8b1a7b7486c5bd9b4fc69189bce8c5babeca44d (plain)
  1. #!/bin/sh
  2. confdir="`dirname "$0"`/../"
  3. . $confdir/default-config.sh
  4. if [ -f $confdir/config.sh ]; then
  5. . $confdir/config.sh
  6. fi
  7. # WARNING: Using '%t' in the output filename requires a patched FFmpeg!
  8. # If this command fails with the message 'Invalid segment filename template',
  9. # you do not have such a FFmpeg version.
  10. ffmpeg \
  11. -y -nostdin \
  12. -i tcp://$MIXHOST:11000 \
  13. -ac 2 -channel_layout 2 -aspect 16:9 \
  14. -map 0:v -c:v:0 mpeg2video -pix_fmt:v:0 yuv422p -qscale:v:0 2 -qmin:v:0 2 -qmax:v:0 7 -keyint_min 0 -bf:0 0 -g:0 0 -intra:0 -maxrate:0 90M \
  15. -map 0:a -c:a:0 mp2 -b:a:0 192k -ac:a:0 2 -ar:a:0 48000 \
  16. -flags +global_header -flags +ilme+ildct \
  17. -f segment -segment_time 180 -segment_format mpegts segment-%t-%05d.ts