MP3Sharp 1.0.4
See the version list below for details.
dotnet add package MP3Sharp --version 1.0.4
NuGet\Install-Package MP3Sharp -Version 1.0.4
<PackageReference Include="MP3Sharp" Version="1.0.4" />
paket add MP3Sharp --version 1.0.4
#r "nuget: MP3Sharp, 1.0.4"
// Install MP3Sharp as a Cake Addin #addin nuget:?package=MP3Sharp&version=1.0.4 // Install MP3Sharp as a Cake Tool #tool nuget:?package=MP3Sharp&version=1.0.4
MP3Sharp
Decode MP3 files to PCM bitstreams entirely in .NET managed code: <img align="center" src ="https://raw.githubusercontent.com/ZaneDubya/MP3Sharp/master/Images/MP3SharpHeader.png" />
SETUP
To use MP3Sharp, you will need: an audio device that accepts PCM data, an array of bytes to act as the PCM data buffer (default size is 4096 bytes), and a MP3 file. That's it!
The default interface to MP3Sharp is the MP3Stream class. An instance of MP3Stream takes a filepath to a MP3 file as a parameter and outputs PCM data:
// open the mp3 file.
MP3Stream stream = new MP3Stream(@"sample.mp3");
// Create the buffer.
byte[] buffer = new byte[4096];
// read the entire mp3 file.
int bytesReturned = 1;
int totalBytesRead = 0;
while (bytesReturned > 0)
{
bytesReturned = stream.Read(buffer, 0, buffer.Length);
totalBytesRead += bytesReturned;
}
// close the stream after we're done with it.
stream.Close();
So simple!
LICENSE
MP3Sharp is licensed under the LGPL Version 3.
CREDITS
MP3Sharp is a port of JavaLayer, a MP3 decoder written by JavaZoom and released under the LGPL. JavaLayer was initially ported to C# by Robert Burke, in what he modestly describes as a 'half day project'. tekHedd added some significant speed optimizations. I've spent a few weeks of evenings cleaning up the code and reducing redundancies throughout. The sample MP3 file used in this project is by BenSound, and is included under the terms of the Creative Commons - Attribution - No Derivative Works license.
FUTURE IMPROVEMENT
- Many of the variables throughout the ported code are poorly named. I've done my best to clean them up, but don't know enough about the MP3 specification to suggest better names for most of them.
- There is a large amount of dead code and variables that are assigned but never used, and thus significant area for improvement of decoding (using these variables properly) or optimization (removing them altogether).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (6)
Showing the top 5 NuGet packages that depend on MP3Sharp:
Package | Downloads |
---|---|
Konata.Codec
Audio & Video codec library for Konata. |
|
Evergine.Assets
Provides utilities to work with different assets formats (e.g. audio formats, textures, 3D models...) |
|
KinsonDigital.CASL
CASL is a simplistic cross-platform, .NET library for playing and managing audio powered by OpenAL 1.1 using software rendering. |
|
WaveEngine.Assets
Provides utilities to work with different assets formats (e.g. audio formats, textures, 3D models...) |
|
Lagrange.Audio
Package Description |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on MP3Sharp:
Repository | Stars |
---|---|
OpenRA/OpenRA
Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X.
|
|
Uahh/ToastFish
一个利用摸鱼时间背单词的软件。
|
|
Afr0Games/Project-Dollhouse
A project aiming to rebuild TSO (The Sims Online) from the ground up. Inspired by CorsixTH.
|
Merged upstream fix to index out of bounds error.