Automatically trimming an mp3 in PHP

前端 未结 7 2239
太阳男子
太阳男子 2020-12-04 22:15

Are there any ways to automatically trim an MP3 uploaded to a website to 30 seconds (or some other length) in PHP? If not, is there any good 3rd party services that could b

相关标签:
7条回答
  • 2020-12-04 23:14

    In Debian/ubuntu try installing mpgtx:

    apt-get install mpgtx
    
    mptsplit input.mp3 [00:00:00-00:00:30] -o output.mp3
    

    I'm sure you'll find mpgtx available in other fine Linux distros too, or just install from source.

    0 讨论(0)
提交回复
热议问题