Hi, thank you for your suggestions. I changed the file and tried the command again. Here is what it says:

-sh-3.00$ /usr/local/bin/ffmpeg -i /var/www/vhosts/emusicmajors.com/subdomains/videos/htt
pdocs/video/DuckLanding.MOV -acodec mp3 -ar 22050 -ab 32 -f flv /var/www/vhosts/emusicmaj
ors.com/subdomains/videos/httpdocs/flvideo/DuckLanding.flv
FFmpeg version SVN-r10178, Copyright (c) 2000-2007 Fabrice Bellard, et al.
configuration: --enable-libmp3lame --enable-libogg --enable-libvorbis --disable-mmx --e
nable-shared
libavutil version: 49.5.0
libavcodec version: 51.41.0
libavformat version: 51.12.2
built on Aug 21 2007 18:23:24, gcc: 3.4.6 20060404 (Red Hat 3.4.6-8)
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/var/www/vhosts/emusicmajors.com/subdomains/vide
os/httpdocs/video/DuckLanding.MOV':
Duration: 00:00:02.8, start: 0.000000, bitrate: 8066 kb/s
Stream #0.0(eng): Video: mjpeg, yuvj420p, 640x480, 30.00 fps(r)
Stream #0.1(eng): Audio: pcm_u8, 8000 Hz, mono, 64 kb/s
Unknown encoder 'mp3'

Any other suggestions?




Quote Originally Posted by twhiting9275
Unknown encoder 'mp3'
This is the problem here ;)
in includes/settings/video_conversion.php
change
Code:
$cmd_ffmpeg = "$config[ffmpeg] -i $video_src -acodec mp3 -f flv -b 700000 $video_flv";
to
Code:
$cmd_ffmpeg = "$config[ffmpeg] -i '$video_src' -y -acodec libmp3lame -ar 22050 -ab 32 -f flv $video_flv";
ffmpeg doesn't include an mp3 encoder. Using libmp3lame instead of mp3 codec should resolve this