Advertisement
Guest User

Untitled

a guest
Mar 20th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # Demux AVI containing pre-bayer data
  2. ffmpeg -i drop1.avi -vcodec copy -an -f rawvideo drop1.rawv
  3.  
  4. # demuxed raw to mp4
  5. ffmpeg -r 25 -f rawvideo -s 1920x1081 -pix_fmt bayer_grbg8 -i drop1.rawv -filter:v "crop=1920:1080" -preset veryfast out.mp4
  6.  
  7. # But this does not work
  8. ffmpeg -r 25 -f rawvideo -s 1920x1081 -pix_fmt bayer_grbg8 -i drop1.avi -filter:v "crop=1920:1080" -an -c:v libx264 -preset veryfast drop1_conv.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement