Advertisement
Guest User

Chain ffmpeg

a guest
Nov 21st, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.45 KB | None | 0 0
  1. ffmpeg -re -i input.mov \
  2.   -c:v libx264 -c:a libfdk_aac -crf 18 -vbr 5 -s 1280x720 -aspect 16:9 -maxrate 2M -preset veryslow -profile:v high -level 4.0 -g 15 ./output.mp4 \  
  3.   -c:v libx264 -c:a libfdk_aac -s 1280x720 -aspect 16:9 -crf 18 -vbr 5 -maxrate 2M -preset veryslow -profile:v high -level 4.0 -bsf h264_mp4toannexb -flags -global_header -map 0 -f segment -segment_time 10 -segment_list ./playlist.m3u8 -segment_format mpegts ./stream%04d.ts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement