Code Monkey home page Code Monkey logo

mopidysharp's Introduction

MopidySharp - Library for Mopidy Music Server

Implemented all methods on mopidy.core.
Connect by Http-Post/JSON-RPC, or WebSocket(limitted support).

Description

Supports .NET Standard2.0

Requirement

Newtonsoft.Json ver >= 12.0.3
System.Drawing.Common ver >= 5.0.0

Usage

  1. Add NuGet-Package to your project.
  2. Write Code Like:
// using Mopidy.Core;

Mopidy.Settings.ServerAddress = "Set your Mopidy IP-Address";
var res = await Tracklist.GetTlTracks();

if (res.Succeeded)
    foreach (var tlTrack in res.Result)
        System.Diagnostics.Debug.WriteLine(tlTrack.Track.Name);

Node:
The default setting is to connect by Http-Post.
In this case, Mopidy.Core.CoreListener does not work.
It is necessary to intentionally acquire and update the state by polling or other means.

Added limitted support for WebSocket on ver 1.1.0.

Retrieving event notifications is only available over WebSocket connections.

!! Warning !! : DO NOT USE this feature when you are connecting mopidy server directly to the Internet.

This feature requires that Csrf-Protection be disabled.
This setting is officially deprecated by mopidy.

Link: Mopidy-HTTP csrf_protection:

This config should only be disabled if you understand the security implications and require the HTTP server’s old behaviour.

How to get event notifications:

  1. Make sure that your mopidy server is NOT ACCESSIBLE from the Internet.
  2. Set the http/csrf_protection value to false in your mopidy.conf.
  3. Restart mopidy server.
  4. Write Code Like:
// using Mopidy.Core;

Mopidy.Settings.ServerAddress = "Set your Mopidy IP-Address";
Mopidy.Settings.ConnectionType = Mopidy.Settings.Connection.WebSocket;

CoreListener.TrackPlaybackStarted += (sender, ev) =>
{
    System.Diagnostics.Debug.WriteLine(ev.TlTrack.Track.Name);
};

await Playback.Play();

More Info

See Namespace.md

Licence

MIT Licence

Links

Mopidy Document Top:
https://docs.mopidy.com/en/latest/

Mopidy API:
https://docs.mopidy.com/en/latest/api/core/

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.