goombaloon
goombaloon

Reputation: 3099

WAV / MP3 Conversion On Web Server

I'm looking to convert uploaded WAV files to MP3 on my shared hosting server (ASP.NET / C#) and am curious if anyone else has tackled this before.

I've seen a few open source C# libraries for performing audio conversion (AumpLib, for example), but in most cases it looks like people are using them on desktop applications.

Are there any good open source C# libraries / technologies for this scenario? Any feedback or advice would be greatly appreciated.

Upvotes: 2

Views: 4861

Answers (2)

Magnus Johansson
Magnus Johansson

Reputation: 28325

The BASS Library can perform encoding to MP3. It is not open source, but it will do the job nicely. There's also a .NET wrapper available.

Upvotes: 2

Ian G
Ian G

Reputation: 30234

Have you tried LAME? http://lame.sourceforge.net/index.php

Upvotes: 2

Related Questions