Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to convert any audio file to mp3 in rails?

I want to upload any audio file and want the out put in the mp3 formate . Is it possible in rails ? Is there ffmpeg code or any thing that convert any audio file to mp3? if any share

like image 465
Arpit Vaishnav Avatar asked Oct 27 '25 15:10

Arpit Vaishnav


1 Answers

Is it possible in rails ?

Yes it is possible.

Is there ffmpeg code or any thing that convert any audio file to mp3?

Yes.

just follow this beautiful article

Your command something like follwing

system "ffmpeg -i #{full_filename} -r 25 -acodec flv -ar 22050 -y -s 320x240 #{full_filename}.mp3"
like image 187
Salil Avatar answered Oct 29 '25 06:10

Salil



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!