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
https://github.com/falahati/PHP-MP3
PHP-MP3 is a simple library for reading and manipulating MPEG audio (MP3).
Install:
composer require falahati/php-mp3:dev-master
Cut MPEG Audio:
\falahati\PHPMP3\MpegAudio::fromFile("old.mp3")->trim(10, 30)-saveFile("new.mp3");