문제

How to convert all audio formats to mp3 in php

도움이 되었습니까?

해결책

Using ffmpeg can be helpful. For details http://ffmpeg.org/

다른 팁

at first you install ffmpeg on your system. (it is free), then in PHP you can call the ffmpeg to convert any audio file to mp3 using the system command like this:

<?php
$output = system("ffmpeg parameters...");
echo $output;
?>

see the ffmpeg documentation for examples how to call ffmpeg.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top