2

I have a website where users can upload music and get it converted to mp3, but I need mp3 and ogg file support to play the music in html5. So, is there any php script that can convert mp3 to ogg?

Community
  • 1
  • 1
Alexander
  • 21
  • 1
  • 2

1 Answers1

4

Use ffmpeg.
You can execute commands directly from your php script.

Community
  • 1
  • 1
azat
  • 3,545
  • 1
  • 28
  • 30
  • 3
    It is also available as a PHP extension, but in my experience, it is far easier just to call the command line version. – Brad Feb 24 '11 at 14:38