dongzhang7382 2009-12-16 00:31
浏览 48
已采纳

如何使用PHP将flv文件转换为mp3文件? [重复]

Possible Duplicate:
How to convert a FLV file recorded with Red5 / FMS to MP3?

How can I convert flv file to a mp3 file by using php?

  • 写回答

2条回答 默认 最新

  • dongsong4418 2009-12-16 00:37
    关注

    I would suggest using ffmpeg to do the actual conversion.

    So you could use the system() function to call an ffmpeg command such as:

    ffmpeg -i input.flv -acodec copy output.mp3
    

    Alternatively, this might help: http://www.phpclasses.org/browse/package/3747.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?