Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio Libraries for MP3 editing [closed]

In one o f my projects using ASP.NET + C# I want to be able to dynamically create 30 seconds clip of MP3 files and add a fade in/out.

What library would you recommend?

I saw there are a lot, including:

http://www.alvas.net/alvas.audio.aspx

http://www.audiosoundeditor.com/

http://www.mitov.com/html/audiolab.html

Have you ever had to deal this? What library worked the best for you?

Anything will help including free/priced software that I could call from my C# application or any kind of C# compatible library.

like image 885
marcgg Avatar asked Mar 01 '23 16:03

marcgg


2 Answers

I ended up using ffmpeg

like image 165
marcgg Avatar answered Mar 12 '23 03:03

marcgg


You could try NAudio - There would be a bit of programming required to do this but basically it would be along the lines of using NAudio to decode the MP3 first. Then passing the wave file to fade in (turn up the volume) at the time required and fade out (turn down the volume) when required. If your going to pass this to a client in a format other than wave you would then need to re-encode this file.

like image 43
Sebastian Gray Avatar answered Mar 12 '23 03:03

Sebastian Gray