Code Monkey home page Code Monkey logo

tidallib's Introduction

TidalLib

Unofficial C# API for TIDAL music streaming service.

🖥 Installation

OpenTidl is now available on NuGet

PM> Install-Package TidalLib

🤖 Example

☑️ Login

//login by email and password
(string msg1, LoginKey key1) = await Client.Login("[email protected]", "xxxxxx");
//login by your accesstoken
(string msg2, LoginKey key2) = await Client.Login("your_accctoken");

☑️ Get Album\Track\Video\Playlist\Artist

(string msg, LoginKey key) = await Client.Login("[email protected]", "xxxxxx");
(string msg1, Album album) = await Client.GetAlbum(key, "120929182");
(string msg2, Playlist playlist) = await Client.GetPlaylist(key, "6896171c-2b4a-47bf-b044-ae3886a521d7");
(string msg3, Artist artist) = await Client.GetArtist(key, "8292198");
(string msg4, Track track) = await Client.GetTrack(key, "90521281");
(string msg5, StreamUrl stream) = await Client.GetTrackStreamUrl(key, "90521281", eAudioQuality.Master);
(string msg6, Video video) = await Client.GetVideo(key, "84094460");
(string msg7, VideoStreamUrl vstream) = await Client.GetVideStreamUrl(key, "124586613", eVideoQuality.P1080);

tidallib's People

Contributors

yaronzz avatar

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.