Skip to content

mpeterson2/dart_mpd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#dart_mpd

A MPD wrapper for Dart.

What does it do?

dart_mpd is a wrapper for MPD. It just makes it easy for someone to start up mpd and control it. Instead of having to deal with the protocol yourself, you can let dart_mpd handle it.

How to use it

Just import the package, create an MPDController object, and start using it.

import "dart:async";
import "dart:io";
import "package:mpd/mpd.dart";

void main() {
  // Create the object.
  MPDController controller = new MPDController();

  // Start MPD.
  controller.startMPD()
  .then((Process process) {
    // Start asking MPD for things.
    
    // Clear the current playlist.
    controller.clear();
    
    // Add the song with an ID of 0. You can also use `add` to add a file path.
    controller.addID(0);
    
    // Start playing.
    controller.play();

    // Wait so we can listen to the first 10 seconds of the first song.
    new Timer(new Duration(seconds: 10), () {
      // Add a song with an ID of 1.
      controller.addID(1);
      
      // Play the next song.
      controller.next();      
    });
  });
}

More examples can be found here.

Documentation

Every method has doc comments, but if you want/need more information, go to MPD's documentation page.

Contributing

If you would like to contribute, feel free to fork it and send me a pull request. Everything is pretty well documented.

About

A MPD wrapper for Dart.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages