Virginia Beach Web Development | Website Developer | Mobile Dev | Mobile Video Integration | Doodersrage

Just about everything Website Development related. Virginia Beach VA headquartered with a global reach!

Stripping audio from a video using FFMPEG for MP3, OGG, or other formats

Everyone has wanted to grab the audio portion of a video at one point or another. Whether to get the audio from a music video, concert, or even a lecture. The ability to separate audio data from video data can be darned handy. Before you can begin you will have to install FFMPEG. This guide [...]

Generating a thumbnail image with FFMPEG

If you would like to know how to compress a video for the iPhone or how to quickly use FFMPEG-PHP use this guide: CONVERT VIDEO TO IPHONE FRIENDLY H264 WITH FFMPEG /usr/bin/ffmpeg -y -itsoffset -6 -i "/var/www/html/myvideo.mpg" -vcodec mjpeg -vframes 1 -an -f rawvideo -s 320×240 "/var/www/html/mypic.jpg"; The above will generate a JPEG (Joint Photographic [...]

Convert video to iPhone friendly H264 with FFMPEG

FFMPEG is a cross-platform solution for recording, converting, and steaming audio and video. There is even a PHP module for gathering media information. It typically cannot be installed by using a yum or apt-get repository though. Many guides exist for installing FFMPEG on multiple platforms. This quick tutorial will be limited to its use on [...]