Steps to Install FFMPEG in WAMP5 both in 32 and 64 bit OS


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. The ffmpeg is installed in the server. we are checked the ffmpeg and converted in ( Libraries\Pictures ) using the command prompt
  2.  
  3. this is the command
  4.  
  5. To convert the file format
  6.  
  7. c:\ffmpeg\ffmpeg -i sourcefilepath destination_filepath
  8.  
  9.  
  10. For extracting images from a video:
  11. To cut the images ( it cut the images in the given time )
  12.  
  13. c:\ffmpeg\ffmpeg -y -t 0:0:0.001 -i test.flv -f image2 test%d.jpg
  14.  
  15.  
  16. c:\ffmpeg\ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg
  17.  
  18. This will extract one video frame per second from the video and will output them in files named `foo-001.jpeg', `foo-002.jpeg', etc. Images will be rescaled to fit the new WxH values.
  19.  
  20.  
  21. http://www.vidionline.com/php/7-how-to-install-ffmpeg-on-windows
  22.  
  23.  
  24.  
  25. 64 -Bit
  26.  
  27. http://ffmpeg.arrozcru.org/autobuilds/
  28.  
  29.  
  30. ffmpeg commands
  31.  
  32. http://ffmpeg.org/ffmpeg-doc.html
  33.  
  34.  
  35. http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.