]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blame - helpers/music_file.py
Remove a_s_with_effect in profit to GainEffect
[perso/Immae/Projets/Python/MusicSampler.git] / helpers / music_file.py
CommitLineData
be27763f
IB
1import threading
2import pydub
98ff4305 3import time
60979de4 4from transitions.extensions import HierarchicalMachine as Machine
be27763f 5
29597680
IB
6import os.path
7
ccda4cb9
IB
8import audioop
9
29597680 10from .lock import Lock
a24c34bc 11from . import Config, gain, debug_print, error_print
af27d782 12from .mixer import Mixer
aee1334c 13from .music_effect import GainEffect
1b4b78f5 14
29597680
IB
15file_lock = Lock("file")
16
60979de4 17class MusicFile(Machine):
2e404903 18 def __init__(self, filename, mapping, name=None, gain=1):
60979de4
IB
19 states = [
20 'initial',
21 'loading',
22 'failed',
2e404903
IB
23 {
24 'name': 'loaded',
25 'children': ['stopped', 'playing', 'paused', 'stopping']
26 }
60979de4
IB
27 ]
28 transitions = [
2e404903
IB
29 {
30 'trigger': 'load',
31 'source': 'initial',
32 'dest': 'loading'
33 },
34 {
35 'trigger': 'fail',
36 'source': 'loading',
37 'dest': 'failed'
38 },
39 {
40 'trigger': 'success',
41 'source': 'loading',
42 'dest': 'loaded_stopped'
43 },
44 {
45 'trigger': 'start_playing',
46 'source': 'loaded_stopped',
47 'dest': 'loaded_playing'
48 },
49 {
50 'trigger': 'pause',
51 'source': 'loaded_playing',
52 'dest': 'loaded_paused'
53 },
54 {
55 'trigger': 'unpause',
56 'source': 'loaded_paused',
57 'dest': 'loaded_playing'
58 },
59 {
60 'trigger': 'stop_playing',
61 'source': ['loaded_playing','loaded_paused'],
62 'dest': 'loaded_stopping'
63 },
64 {
65 'trigger': 'stopped',
66 'source': 'loaded_stopping',
67 'dest': 'loaded_stopped',
68 'after': 'trigger_stopped_events'
69 }
60979de4
IB
70 ]
71
2e404903
IB
72 Machine.__init__(self, states=states,
73 transitions=transitions, initial='initial')
60979de4 74
1b4b78f5
IB
75 self.volume = 100
76 self.mapping = mapping
be27763f 77 self.filename = filename
9de92b6d 78 self.name = name or filename
29597680 79 self.audio_segment = None
ccc8b4f2 80 self.audio_segment_frame_width = 0
ccda4cb9 81 self.initial_volume_factor = gain
29597680 82 self.music_lock = Lock("music__" + filename)
0deb82a5 83 self.wait_event = threading.Event()
ccda4cb9 84 self.db_gain = 0
aee1334c 85 self.gain_effects = []
be27763f 86
2e404903 87 threading.Thread(name="MSMusicLoad", target=self.load).start()
29597680
IB
88
89 def on_enter_loading(self):
90 with file_lock:
91 try:
a24c34bc
IB
92 debug_print("Loading « {} »".format(self.name))
93 self.mixer = self.mapping.mixer or Mixer()
ccda4cb9 94 initial_db_gain = gain(self.initial_volume_factor * 100)
2e404903
IB
95 self.audio_segment = pydub.AudioSegment \
96 .from_file(self.filename) \
97 .set_frame_rate(Config.frame_rate) \
98 .set_channels(Config.channels) \
99 .set_sample_width(Config.sample_width) \
100 .apply_gain(initial_db_gain)
ccc8b4f2 101 self.audio_segment_frame_width = self.audio_segment.frame_width
29597680
IB
102 self.sound_duration = self.audio_segment.duration_seconds
103 except Exception as e:
a24c34bc 104 error_print("failed to load « {} »: {}".format(self.name, e))
29597680
IB
105 self.loading_error = e
106 self.fail()
107 else:
108 self.success()
a24c34bc 109 debug_print("Loaded « {} »".format(self.name))
60979de4
IB
110
111 def check_is_loaded(self):
112 return self.state.startswith('loaded_')
be27763f 113
29597680
IB
114 def is_not_stopped(self):
115 return self.check_is_loaded() and not self.is_loaded_stopped()
0e5d59f7 116
9de92b6d 117 def is_paused(self):
29597680 118 return self.is_loaded_paused()
9de92b6d 119
98ff4305
IB
120 @property
121 def sound_position(self):
29597680
IB
122 if self.is_not_stopped():
123 return self.current_frame / self.current_audio_segment.frame_rate
98ff4305
IB
124 else:
125 return 0
126
2e404903 127 def play(self, fade_in=0, volume=100, loop=0, start_at=0):
b37c72a2 128 self.set_gain(gain(volume) + self.mapping.master_gain, absolute=True)
1b4b78f5 129 self.volume = volume
1e44fe7e
IB
130 self.current_loop = 0
131 self.loop_left = loop
1b4b78f5 132
29597680 133 with self.music_lock:
ccda4cb9 134 self.current_audio_segment = self.audio_segment
ccc8b4f2 135 self.current_frame = int(start_at * self.audio_segment.frame_rate)
1e44fe7e
IB
136 if fade_in > 0:
137 db_gain = gain(self.volume, 0)[0]
138 self.set_gain(-db_gain)
139 self.gain_effects.append(GainEffect(
140 "fade",
141 self.current_audio_segment,
142 self.current_loop,
143 self.sound_position,
144 self.sound_position + fade_in,
145 gain=db_gain))
ccc8b4f2 146
29597680
IB
147 self.start_playing()
148
29597680 149 def on_enter_loaded_playing(self):
af27d782 150 self.mixer.add_file(self)
29597680
IB
151
152 def finished_callback(self):
153 if self.is_loaded_playing():
154 self.stop_playing()
155 if self.is_loaded_stopping():
156 self.stopped()
157
22514f3a 158 def trigger_stopped_events(self):
af27d782 159 self.mixer.remove_file(self)
0deb82a5
IB
160 self.wait_event.set()
161
22514f3a
IB
162 def play_callback(self, out_data_length, frame_count):
163 if self.is_loaded_paused():
164 return b'\0' * out_data_length
165
29597680 166 with self.music_lock:
ccc8b4f2
IB
167 [data, nb_frames] = self.get_next_sample(frame_count)
168 if nb_frames < frame_count:
1e44fe7e
IB
169 if self.is_loaded_playing() and self.loop_left != 0:
170 self.loop_left -= 1
171 self.current_loop += 1
ccc8b4f2 172 self.current_frame = 0
2e404903
IB
173 [new_data, new_nb_frames] = self.get_next_sample(
174 frame_count - nb_frames)
ccc8b4f2
IB
175 data += new_data
176 nb_frames += new_nb_frames
177 elif nb_frames == 0:
75d6cdba 178 # FIXME: too slow
2e404903
IB
179 threading.Thread(
180 name="MSFinishedCallback",
181 target=self.finished_callback).start()
29597680 182
22514f3a 183 return data.ljust(out_data_length, b'\0')
ccc8b4f2
IB
184
185 def get_next_sample(self, frame_count):
186 fw = self.audio_segment_frame_width
187
188 data = b""
189 nb_frames = 0
ccc8b4f2
IB
190
191 segment = self.current_audio_segment
192 max_val = int(segment.frame_count())
193
194 start_i = max(self.current_frame, 0)
195 end_i = min(self.current_frame + frame_count, max_val)
2e404903 196 data += segment._data[start_i*fw : end_i*fw]
ccc8b4f2
IB
197 nb_frames += end_i - start_i
198 self.current_frame += end_i - start_i
199
aee1334c
IB
200 volume_factor = self.volume_factor(self.effects_next_gain(nb_frames))
201
202 data = audioop.mul(data, Config.sample_width, volume_factor)
ccda4cb9 203
ccc8b4f2 204 return [data, nb_frames]
be27763f 205
2e404903 206 def seek(self, value=0, delta=False):
52d58baf
IB
207 # We don't want to do that while stopping
208 if not (self.is_loaded_playing() or self.is_loaded_paused()):
209 return
210 with self.music_lock:
aee1334c 211 self.abandon_all_effects()
2e404903
IB
212 self.current_frame = max(
213 0,
214 int(delta) * self.current_frame
215 + int(value * self.audio_segment.frame_rate))
ccc8b4f2 216 # FIXME: si on fait un seek + delta, adapter le "loop"
52d58baf 217
aee1334c
IB
218 def effects_next_gain(self, frame_count):
219 db_gain = 0
220 for gain_effect in self.gain_effects:
221 [new_gain, last_gain] = gain_effect.get_next_gain(
222 self.current_frame,
1e44fe7e 223 self.current_loop,
aee1334c
IB
224 frame_count)
225 if last_gain:
226 self.set_gain(new_gain)
227 self.gain_effects.remove(gain_effect)
228 else:
229 db_gain += new_gain
230 return db_gain
231
232
233 def abandon_all_effects(self):
234 db_gain = 0
235 for gain_effect in self.gain_effects:
236 db_gain += gain_effect.get_last_gain()
237
238 self.gain_effects = []
239 self.set_gain(db_gain)
240
2e404903 241 def stop(self, fade_out=0, wait=False):
29597680
IB
242 if self.is_loaded_playing():
243 ms = int(self.sound_position * 1000)
244 ms_fo = max(1, int(fade_out * 1000))
245
2e404903
IB
246 new_audio_segment = self.current_audio_segment[: ms+ms_fo] \
247 .fade_out(ms_fo)
29597680 248 with self.music_lock:
22514f3a
IB
249 self.current_audio_segment = new_audio_segment
250 self.stop_playing()
1b4b78f5
IB
251 if wait:
252 self.wait_end()
0e5d59f7 253 else:
29597680
IB
254 self.stop_playing()
255 self.stopped()
0e5d59f7 256
aee1334c
IB
257 def volume_factor(self, additional_gain):
258 return 10 ** ( (self.db_gain + additional_gain) / 20)
259
b37c72a2
IB
260 def set_gain(self, db_gain, absolute=False):
261 if absolute:
262 self.db_gain = db_gain
263 else:
264 self.db_gain += db_gain
29597680 265
aee1334c 266 def set_volume(self, value, delta=False, fade=0):
2e404903
IB
267 [db_gain, self.volume] = gain(
268 value + int(delta) * self.volume,
269 self.volume)
1b4b78f5 270
aee1334c
IB
271 if fade > 0:
272 self.gain_effects.append(GainEffect(
273 "fade",
274 self.current_audio_segment,
1e44fe7e 275 self.current_loop,
aee1334c
IB
276 self.sound_position,
277 self.sound_position + fade,
278 gain=db_gain))
279 else:
280 self.set_gain(db_gain)
be27763f 281
b86db9f1 282 def wait_end(self):
0deb82a5
IB
283 self.wait_event.clear()
284 self.wait_event.wait()
d479af33 285