A package to integrate Media Player Remote Interfacing Specification (MPRIS) in Dart.
This package makes use of package:dbus
internally. Following interfaces have been implemented:
final instance = await MPRIS.create(
busName: 'org.mpris.MediaPlayer2.harmonoid',
identity: 'Harmonoid',
desktopEntry: '/usr/share/applications/harmonoid',
);
instance.setEventHandler(
MPRISEventHandler(
playPause: () async {
print('Play/Pause');
instance.playbackStatus =
instance.playbackStatus == MPRISPlaybackStatus.playing
? MPRISPlaybackStatus.paused
: MPRISPlaybackStatus.playing;
},
play: () async {
print('Play');
instance.playbackStatus = MPRISPlaybackStatus.playing;
},
pause: () async {
print('Pause');
instance.playbackStatus = MPRISPlaybackStatus.paused;
},
next: () async {
print('Next');
},
previous: () async {
print('Previous');
},
),
);
instance.metadata = MPRISMetadata(
Uri.parse('https://music.youtube.com/watch?v=Gr6g3-6VQoE'),
length: Duration(minutes: 3, seconds: 15),
artUrl: Uri.parse(
'https://lh3.googleusercontent.com/jvgMIjgbvnqnwLwjtqNa0euo9WStdIxrJnpQURgbwuPazT2OpZUdYPZe1gss2fK39oC8ITofFmeGxKY',
),
album: 'Collage',
albumArtist: ['The Chainsmokers'],
artist: ['The Chainsmokers', 'Phoebe Ryan'],
discNumber: 1,
title: 'All We Know',
trackNumber: 2,
);
Copyright © 2021 & onwards, Hitesh Kumar Saini <saini123hitesh@gmail.com>
This project & the work under this repository is governed by MIT license that can be found in the LICENSE file.