Revision: 66597
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at June 1, 2014 20:00 by dragoviandesign
Initial Code
<?php
$ffmpeg = exec('which ffmpeg');
$ffmpegcmd = $ffmpeg." -i test.mp3 -acodec libvorbis test.ogg";
echo $ffmpegcmd;
exec($ffmpegcmd);
?>
Initial URL
Initial Description
This snippets converts a file called 'test.mp3' in the same folder, to a file called 'test.ogg' and saves it in the same folder as well
Initial Title
Convert MP3 to OGG
Initial Tags
convert
Initial Language
PHP