Guest User

Untitled

a guest
Aug 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Error while Creating Videos from images using ffmpeg
  2. $path = dirname(__FILE__);
  3. $ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg video.mpg";
  4.  
  5. $ff_command = "ffmpeg -r 10 -b 1800 -i {$path}/img%03d.jpg test1800.mpg";
  6.  
  7. $ff_command = "ffmpeg -i {$path}/img%03d.jpg -s 1280x720 -aspect 16:9 -r 24 -vb 20M teste.mp4";
  8.  
  9. $ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg -vcodec mpeg4 -b 800k video.avi";
  10.  
  11. $ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg -vcodec libx264 -b 800k video.avi";
Add Comment
Please, Sign In to add comment