Advertisement
TheAMM

Tron <9MB FFmpeg

Jan 25th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.77 KB | None | 0 0
  1. ffmpeg \
  2.     -ss 00:00:15    \
  3.     -i Tron.mp4     \
  4.     -an             \
  5.     -c:v libx264    \
  6.     -b:v 5k         \
  7.     -preset:v veryslow  \
  8.     -threads 0      \
  9.     -vf scale=100:54    \
  10.     -r 3            \
  11.     -to 01:31:15    \
  12.     -f flv          \
  13.     -pass 1         \
  14.     -y /dev/null
  15. ffmpeg              \
  16.     -ss 00:00:15    \
  17.     -i Tron.mp4     \
  18.     -c:a libfdk_aac \
  19.     -ac 1           \
  20.     -b:a 1k         \
  21.     -ar 32000       \
  22.     -profile:a aac_he   \
  23.     -preset:a veryslow  \
  24.     -c:v libx264    \
  25.     -b:v 5k         \
  26.     -preset:v veryslow  \
  27.     -threads 0      \
  28.     -vf scale=100:54    \
  29.     -r 3            \
  30.     -to 01:31:15    \
  31.     -af 'volume=2'  \
  32.     -f flv          \
  33.     -pass 2         \
  34.     -y tronconv.flv
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement