سؤال

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