↧
Answer by aakash rajput for How to compress mp3 file in php
// Audio compress $inputAudio = public_path('/audio/myaudio.mp3'); $outputAudio = public_path('/output/outputAudio.mp3'); exec("ffmpeg -i $inputAudio -ab 64 $outputAudio"); // Video compress...
View ArticleAnswer by Bruce for How to compress mp3 file in php
Answer Already posted in the respective links of stackoverflowhow-to-compress-or-convert-to-low-quality-mp3-file-from-phpWhile using zip command line with PHP to add a folder into an archive...
View ArticleHow to compress mp3 file in php
I am doing a php project. In my project, I need to compress mp3 files to reduce the file size because I need to store a lot of mp3 files.How can I compress it in php? I am using laravel framework. If...
View Article