colemar

ffmpeg TRICKS

Oct 9th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. CREATE VIDEO PREVIEW
  2. ffmpeg -i c20d9632f5e14d06897a6800e8b4b397.mkv -an -vf scale=-2:240 -preset faster -crf 28 -movflags faststart preview.mp4
  3.  
  4. DISTILL ONLY KEYFRAMES
  5. ffmpeg -discard nokey -i t1.mp4 -c copy t1.264
  6. ffmpeg -r 30 -i t1.264 -c copy t1keys.mp4
Add Comment
Please, Sign In to add comment