MpcNET 1.6.5
See the version list below for details.
dotnet add package MpcNET --version 1.6.5
NuGet\Install-Package MpcNET -Version 1.6.5
<PackageReference Include="MpcNET" Version="1.6.5" />
paket add MpcNET --version 1.6.5
#r "nuget: MpcNET, 1.6.5"
// Install MpcNET as a Cake Addin #addin nuget:?package=MpcNET&version=1.6.5 // Install MpcNET as a Cake Tool #tool nuget:?package=MpcNET&version=1.6.5
<img src="icon.png" width="128">
MpcNET
Pure .NET Client Library for Music Player Daemon Servers.
The heart and soul of Stylophone.
Nightly Packages - Stable Versions
Usage
Connection
To create a client for MPD, you must first create a IPEndPoint
for the Server with the right IP and Port.
var mpdEndpoint = new IPEndPoint(IPAddress.Loopback, 6600);
Then create a Client and Connect to MPD.
var client = new MpcConnection(mpdEndpoint);
var connected = await client.ConnectAsync();
The ConnectAsync()
method is returning a bool to indicate if the connection was successfully. However, this can be queried directly on the Client also:
var isConnected = client.IsConnected;
and for MPD version, additional property is available:
var mpdVersion = client.Version
To disconnect the Client use the follow method:
await client.DisconnectAsync();
or just dispose the client:
client.Dispose();
Send Command
using (var client = new MpcConnection(mpdEndpoint)) {
await client.ConnectAsync();
// Look in /Commands to see everything that implements IMpcCommand
var request = await client.SendAsync(new IMpcCommand<List<string>>(parameters));
if (!request.IsResponseValid) {
var mpdError = request.Response?.Result?.MpdError;
if (mpdError != null && mpdError != "")
Console.WriteLine($"Error: {mpdError}");
else
Console.WriteLine($"Invalid server response: {response}.");
} else {
List<string> response = request.Response.Content;
// do stuff
}
}
Command Lists
var commandList = new CommandList();
commandList.Add(new IMpcCommand<?>(firstCommandArgument);
commandList.Add(new IMpcCommand<?>(secondCommandArgument);
commandList.Add(new IMpcCommand<?>(thirdCommandArgument);
using (var client = new MpcConnection(mpdEndpoint)) {
await client.ConnectAsync();
var request = await client.SendAsync(commandList);
// Response string contains responses of all the commands, split by commas
string response = request.Response?.Content;
}
Binary Responses
// Get albumart from MPD
List<byte> data = new List<byte>();
using (var client = new MpcConnection(mpdEndpoint))
{
long totalBinarySize = 9999;
long currentSize = 0;
do
{
var albumReq = await client.SendAsync(new AlbumArtCommand(f.Path, currentSize));
if (!albumReq.IsResponseValid) break;
var response = albumReq.Response.Content;
if (response.Binary == 0) break; // MPD isn't giving us any more data, let's roll with what we have.
totalBinarySize = response.Size;
currentSize += response.Binary;
data.AddRange(response.Data);
Debug.WriteLine($"Downloading albumart: {currentSize}/{totalBinarySize}");
} while (currentSize < totalBinarySize);
}
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
- Newtonsoft.Json (>= 13.0.1)
- Polly (>= 7.2.2)
- System.ValueTuple (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on MpcNET:
Repository | Stars |
---|---|
Difegue/Stylophone
A pretty cool™️ MPD client in .NET. Based on MpcNET.
|