mpris 1.1.0 copy "mpris: ^1.1.0" to clipboard
mpris: ^1.1.0 copied to clipboard

A library to interface D-Bus MPRIS media players on linux systems.

example/example.dart

import 'package:mpris/mpris.dart';

Future main() => runSpotifyExample('org.mpris.MediaPlayer2.spotify');

// This code works for the Spotify client and the spotifyd daemon
Future runSpotifyExample(String name) async {
  final mpris = MPRIS();
  final player = mpris.getPlayer(name);

  print('Playing song...');
  await player.openUri('spotify:track:5Wi2zLwER77wQaZxnr6sx0');
  await printPlaying(player);

  await Future.delayed(const Duration(seconds: 5));

  print('Playing album...');
  await player.openUri('spotify:album:4RTDlj21LMbDZD5sm4WTEW');
  await printPlaying(player);

  await Future.delayed(const Duration(seconds: 5));

  print('Skipping to next song...');
  await player.next();
  await printPlaying(player);

  await Future.delayed(const Duration(seconds: 5));

  print('Toggling play...');
  await player.toggle();
  await printPlaying(player);

  await mpris.close();
}

Future printPlaying(MPRISPlayer player) async {
  // Some delay is required because changes don't happen instantly. The timout can also be lower, but then old metadata may be returned
  await Future.delayed(const Duration(milliseconds: 500));
  final metadata = await player.getMetadata();
  print("Playing '${metadata.trackTitle}' by '${metadata.trackArtists[0]}'");
}
2
likes
90
pub points
0%
popularity

Publisher

unverified uploader

A library to interface D-Bus MPRIS media players on linux systems.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

dbus

More

Packages that depend on mpris