분류
php
Convert mp3 to ogg
본문
<?php
$ffmpeg = exec('which ffmpeg');
$ffmpegcmd = $ffmpeg." -i test.mp3 -acodec libvorbis test.ogg";
echo $ffmpegcmd;
exec($ffmpegcmd);
?>
- 이전글프락시 사용시 실제 아이피 구하기 15.06.03
- 다음글웹페이지에서 모든 링크 구하기 15.06.03