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
https://forums.phpfreaks.com/topic/154678-ffmpeg-php-encoding/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.