Audio Service
The audio service handles playback and queueing of tracks.
How to set up the Audio Service
from mycroft.skills.audioservice import AudioService def initialize(self):
self.audio_service = AudioService(self.bus)
#Other initialize code
[...]Starting playback
self.audio_service.play('file:///path/to/my/track.mp3')More technical information
The backends
PulseAudio features
AudioService Technical Documentation
Last updated
Was this helpful?