How to convert Mp3 to Wav

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

How to convert Mp3 to Wav

kuladeep18kl
Hi all,

I am new to gstreamer app. i want to convert wav file to mp3 and mp3 to wav file. In gstreamer what are the elements i required for this conversion. Please help to solve this problem.

thanks in advance for any contribution.

Regards,
Kuladeep.
Reply | Threaded
Open this post in threaded view
|

Re: How to convert Mp3 to Wav

kuladeep18k
wav to mp3 converting pipe line:

gst-launch filesrc location=file.wav ! wavparse ! audioconvert ! lame ! filesink location=file.mp3

mp3 to wav converting pipeline:

gst-launch filesrc location=file.mp3 ! mad ! audioconvert ! wavenc ! filesink location=file.wav