Advertisement
Guest User

Untitled

a guest
Jan 25th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. #Slow seek, but in sync
  2. ffmpeg -i infile.mkv -vcodec mpeg4 -acodec aac -strict experimental -ar 48000 -ab 192k -qscale 1 -ss 0:53:46 -t 0:00:18 outfile.mp4
  3.  
  4. #Fast seek, but horribly out of sync
  5. ffmpeg -ss 0:53:46 -i infile.mkv -vcodec mpeg4 -acodec aac -strict experimental -ar 48000 -ab 192k -qscale 1 -t 0:00:18 outfile.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement