This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathaudioservice.py
168 lines (139 loc) · 5.16 KB
/
audioservice.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# Copyright 2017 Mycroft AI Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from os.path import abspath
from mycroft.messagebus.message import Message
def ensure_uri(s):
"""Interprete paths as file:// uri's.
Args:
s: string to be checked
Returns:
if s is uri, s is returned otherwise file:// is prepended
"""
if isinstance(s, str):
if '://' not in s:
return 'file://' + abspath(s)
else:
return s
elif isinstance(s, (tuple, list)):
if '://' not in s[0]:
return 'file://' + abspath(s[0]), s[1]
else:
return s
else:
raise ValueError('Invalid track')
class AudioService:
"""AudioService class for interacting with the audio subsystem
Args:
bus: Mycroft messagebus connection
"""
def __init__(self, bus):
self.bus = bus
def queue(self, tracks=None):
"""Queue up a track to playing playlist.
Args:
tracks: track uri or list of track uri's
Each track can be added as a tuple with (uri, mime)
to give a hint of the mime type to the system
"""
tracks = tracks or []
if isinstance(tracks, (str, tuple)):
tracks = [tracks]
elif not isinstance(tracks, list):
raise ValueError
tracks = [ensure_uri(t) for t in tracks]
self.bus.emit(Message('mycroft.audio.service.queue',
data={'tracks': tracks}))
def play(self, tracks=None, utterance=None, repeat=None):
"""Start playback.
Args:
tracks: track uri or list of track uri's
Each track can be added as a tuple with (uri, mime)
to give a hint of the mime type to the system
utterance: forward utterance for further processing by the
audio service.
repeat: if the playback should be looped
"""
repeat = repeat or False
tracks = tracks or []
utterance = utterance or ''
if isinstance(tracks, (str, tuple)):
tracks = [tracks]
elif not isinstance(tracks, list):
raise ValueError
tracks = [ensure_uri(t) for t in tracks]
self.bus.emit(Message('mycroft.audio.service.play',
data={'tracks': tracks,
'utterance': utterance,
'repeat': repeat}))
def stop(self):
"""Stop the track."""
self.bus.emit(Message('mycroft.audio.service.stop'))
def next(self):
"""Change to next track."""
self.bus.emit(Message('mycroft.audio.service.next'))
def prev(self):
"""Change to previous track."""
self.bus.emit(Message('mycroft.audio.service.prev'))
def pause(self):
"""Pause playback."""
self.bus.emit(Message('mycroft.audio.service.pause'))
def resume(self):
"""Resume paused playback."""
self.bus.emit(Message('mycroft.audio.service.resume'))
def seek(self, seconds=1):
"""Seek X seconds.
Args:
seconds (int): number of seconds to seek, if negative rewind
"""
if seconds < 0:
self.seek_backward(abs(seconds))
else:
self.seek_forward(seconds)
def seek_forward(self, seconds=1):
"""Skip ahead X seconds.
Args:
seconds (int): number of seconds to skip
"""
self.bus.emit(Message('mycroft.audio.service.seek_forward',
{"seconds": seconds}))
def seek_backward(self, seconds=1):
"""Rewind X seconds
Args:
seconds (int): number of seconds to rewind
"""
self.bus.emit(Message('mycroft.audio.service.seek_backward',
{"seconds": seconds}))
def track_info(self):
"""Request information of current playing track.
Returns:
Dict with track info.
"""
info = self.bus.wait_for_response(
Message('mycroft.audio.service.track_info'),
reply_type='mycroft.audio.service.track_info_reply',
timeout=1)
return info.data if info else {}
def available_backends(self):
"""Return available audio backends.
Returns:
dict with backend names as keys
"""
msg = Message('mycroft.audio.service.list_backends')
response = self.bus.wait_for_response(msg)
return response.data if response else {}
@property
def is_playing(self):
"""True if the audioservice is playing, else False."""
return self.track_info() != {}