Jump to content

ffmpeg php - encoding


mysoogal

Recommended Posts

hi all, I'm using this tiny script I found online, to convert video.avi to video.flv , I want to change this script little so it encodes every video found in the directory, I also like to change the video format into libx264 and ACC audio output container will be in ogm. Also after videos have been encoded every video will be deleted. so only the encoded video.ogm will be left.

 

can anybody with ffmpeg php experience help me out as much as you can.

 

<?php
convertToFlv( "video.avi", "video.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 />";
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.