What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » FFMPEG-PHP: converting videos

FFMPEG-PHP: converting videos
Author: Message:
mysoogal
New Member
*


Posts: 2
Joined: May 2009
RE: FFMPEG-PHP: converting videos
its 2009 ! lol

this is what i'm looking for but , i really hate flv ! flash now supports h264 !

how can i change this,
---------------------------------------------------------------------------------------
<?php
convertToFlv( "test.avi", "test.flv" );

function convertToFlv( $input, $output ) {
   echo "Converting $input to $output<br />";
   $command = "ffmpeg -i $input -s 320x240 -ar 44100 -r 12 $output";
   echo "$command<br />";
   shell_exec( $command );
   echo "Converted<br />";
}
?>

----------------------------------------------------------------------------------------------------------

to support this,

mencoder video.mpeg -o output.mp4 -af volume=10 -aspect 16:9 -of avi -noodml -ovc x264 -x264encopts bitrate=300:level_idc=41:bframes=3:frameref=2: nopsnr: nossim: pass=1: threads=auto -oac mp3lame

i'm not sure if mencoder can be called through like php. which runs with ffmpeg-php i believe.

i just want to encode to h264 video, mp3 audio, and output container to be ogg or ogm.

and yes i do notice this post was made years ago lol who knows maybe i get reply
05-03-2009 08:55 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
FFMPEG-PHP: converting videos - by Weyzza on 03-06-2007 at 07:42 PM
RE: FFMPEG-PHP: converting videos - by WDZ on 03-06-2007 at 07:53 PM
RE: FFMPEG-PHP: converting videos - by Weyzza on 03-06-2007 at 08:03 PM
RE: RE: FFMPEG-PHP: converting videos - by WDZ on 03-06-2007 at 08:38 PM
RE: RE: RE: FFMPEG-PHP: converting videos - by Weyzza on 03-06-2007 at 08:54 PM
RE: FFMPEG-PHP: converting videos - by WDZ on 03-06-2007 at 09:11 PM
RE: FFMPEG-PHP: converting videos - by mysoogal on 05-03-2009 at 08:55 PM
RE: FFMPEG-PHP: converting videos - by Dr4g0n on 05-09-2009 at 03:28 PM
RE: FFMPEG-PHP: converting videos - by -dt- on 05-09-2009 at 03:36 PM
RE: FFMPEG-PHP: converting videos - by Dr4g0n on 05-09-2009 at 03:42 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On