Search Results
Saturday, August 11th, 2007
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!I just answered this on the ffmpeg-php boards, but here it is for anyone else.
heres one of the settings i use for mid range ffmpeg flv encoding :
ffmpeg -i in.mov -acodec mp3 -ab 48k -ac 1 -ar 44100 -f […]
Tuesday, July 24th, 2007
here’s a quick tip for anyone on mediatemple (dv) trying to setup ffmpeg-php.
your php.ini file is at /etc/php.ini.
also do not enter the whole extension path, just the extension file
hopefully i just saved someone 10-20 minutes
Tuesday, July 24th, 2007
here’s a quick lesson i learned the hard way. when ever you call getFrame($frame) from ffmpeg-php make sure your frame is greater than 0.
took me a bit to figure out that my loop was calling getFrame with $frame being 0.
Sunday, June 24th, 2007
the how to covers installing ffmpeg on media temple dv and similar centos setups. I’m going to use yum. Please note that you’ll still need to compile ffmpeg to reinstall it with shared libraries
*note : when i started this tut, yum seemed to be the easiest method. due to the fact i like a challenge, […]
Saturday, June 23rd, 2007
heres a good tutorial covering installing ffmpeg. if your on media temple dv please note that the yum install doesn’t work(at least under the two accounts i tried)
from the site :
If you want to convert other video format to FLV (sorenson codec), everybody will suggest using FFmpeg. In fact, only FFmpeg is not enough for […]
Friday, June 22nd, 2007
I was searching high and low for the proper format parameters for wmv.
after trying about every possible combination i could think of this was my final result.
FYI - found out on the ffmpeg mailing list that you can use the mp3 audio codec with the wmv video codec. if someone has issues with that let […]
Friday, June 15th, 2007
Heres a link to check out if your wanting better video quailty with ffmpeg. From my testing encoding took the same amount of time, and was alot better res. I’ll update this list if i come across any others
http://forum.doom9.org/archive/index.php/t-1%2520%253C/t-125163.html
Thursday, June 7th, 2007
vexxhost again has another good tutorial : How to convert/encode files to FLV using FFMPEG & PHP
from the site :
So, as I’ve written in an earlier article on how to install FFMPEG on your server, while there are those who probably use a “YouTube Clone” script, there might be those who want to create […]
Thursday, June 7th, 2007
vexxhost has posted a pretty good walk through for setting up FFMPEG, FFMPEG-PHP, MPlayer, MEncoder, flv2tool, LAME MP3 encoder & libOGG.
from the site :
A lot of people are getting hiring people to install FFMPEG as they think it’s a difficult task, but it’s much easier than you think if you follow these instructions. You […]
Friday, June 1st, 2007
found a good tutorial by Aaron Gadberry on using ffmpeg from a php backend.
from the site
After that install process is over, you will need to test ffmpeg. The executable should be installed to /usr/bin/ffmpeg. To test it, just run /usr/bin/ffmpeg -version and check that the output has no errors. Then run a simple, short audio […]