forked from KenT2/pipresents-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pp_audioplayer.py
691 lines (535 loc) · 25.4 KB
/
pp_audioplayer.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
import os
import time
from Tkinter import *
import Tkinter as tk
import PIL.Image
import PIL.ImageTk
import PIL.ImageEnhance
from pp_mplayerdriver import mplayerDriver
from pp_pluginmanager import PluginManager
from pp_showmanager import ShowManager
from pp_gpio import PPIO
from pp_utils import Monitor
class AudioPlayer:
"""
plays an audio track using mplayer against a coloured backgroud and image
track can be paused and interrupted
See pp_imageplayer for common software design description
"""
#state constants
_CLOSED = "mplayer_closed" #probably will not exist
_STARTING = "mplayer_starting" #track is being prepared
_PLAYING = "mplayer_playing" #track is playing to the screen, may be paused
_ENDING = "mplayer_ending" #track is in the process of ending due to quit or end of track
_WAITING = "wait for timeout" # track has finished but timeout still running
# audio mixer matrix settings
_LEFT = "channels=2:1:0:0:1:1"
_RIGHT = "channels=2:1:0:1:1:0"
_STEREO = "channels=2"
# ***************************************
# EXTERNAL COMMANDS
# ***************************************
def __init__(self,
show_id,
root,
canvas,
show_params,
track_params,
pp_dir,
pp_home,
pp_profile):
self.mon=Monitor()
self.mon.off()
#instantiate arguments
self.show_id=show_id
self.root=root
self.canvas = canvas
self.show_params=show_params
self.track_params=track_params
self.pp_dir=pp_dir
self.pp_home=pp_home
self.pp_profile=pp_profile
# get duration limit (secs ) from profile
if self.track_params['duration']<>'':
self.duration= int(self.track_params['duration'])
self.duration_limit=20*self.duration
else:
self.duration_limit=-1
# get background image from profile.
self.background_file=''
if self.track_params['background-image']<>"":
self.background_file= self.track_params['background-image']
else:
if self.track_params['display-show-background']=='yes':
self.background_file= self.show_params['background-image']
# get background colour from profile.
if self.track_params['background-colour']<>"":
self.background_colour= self.track_params['background-colour']
else:
self.background_colour= self.show_params['background-colour']
# get audio device from profile.
if self.track_params['mplayer-audio']<>"":
self.mplayer_audio= self.track_params['mplayer-audio']
else:
self.mplayer_audio= self.show_params['mplayer-audio']
# get audio volume from profile.
if self.track_params['mplayer-volume']<>"":
self.mplayer_volume= self.track_params['mplayer-volume'].strip()
else:
self.mplayer_volume= self.show_params['mplayer-volume'].strip()
self.volume_option= 'volume=' + self.mplayer_volume
#get speaker from profile
if self.track_params['audio-speaker']<>"":
self.audio_speaker= self.track_params['audio-speaker']
else:
self.audio_speaker= self.show_params['audio-speaker']
if self.audio_speaker=='left':
self.speaker_option=AudioPlayer._LEFT
elif self.audio_speaker=='right':
self.speaker_option=AudioPlayer._RIGHT
else:
self.speaker_option=AudioPlayer._STEREO
#get animation instructions from profile
self.animate_begin_text=self.track_params['animate-begin']
self.animate_end_text=self.track_params['animate-end']
# open the plugin Manager
self.pim=PluginManager(self.show_id,self.root,self.canvas,self.show_params,self.track_params,self.pp_dir,self.pp_home,self.pp_profile)
#create an instance of PPIO so we can create gpio events
self.ppio = PPIO()
# could put instance generation in play, not sure which is better.
self.mplayer=mplayerDriver(self.canvas)
self.tick_timer=None
self.init_play_state_machine()
def play(self, track,
showlist,
end_callback,
ready_callback,
enable_menu=False):
#instantiate arguments
self.track=track
self.showlist=showlist
self.end_callback=end_callback # callback when finished
self.ready_callback=ready_callback #callback when ready to play
self.enable_menu=enable_menu
# select the sound device
if self.mplayer_audio<>"":
if self.mplayer_audio=='hdmi':
os.system("amixer -q -c 0 cset numid=3 2")
else:
os.system("amixer -q -c 0 cset numid=3 1")
# callback to the calling object to e.g remove egg timer.
if self.ready_callback<>None:
self.ready_callback()
# create an instance of showmanager so we can control concurrent shows
self.show_manager=ShowManager(self.show_id,self.showlist,self.show_params,self.root,self.canvas,self.pp_dir,self.pp_profile,self.pp_home)
# Control other shows at beginning
reason,message=self.show_manager.show_control(self.track_params['show-control-begin'])
if reason == 'error':
self.mon.err(self,message)
self.end_callback(reason,message)
self=None
else:
# display image and text
reason,message=self.display_content()
if reason == 'error':
self.mon.err(self,message)
self.end_callback(reason,message)
self=None
else:
# create animation events
reason,message=self.ppio.animate(self.animate_begin_text,id(self))
if reason=='error':
self.mon.err(self,message)
self.end_callback(reason,message)
self=None
else:
# start playing the track.
if self.duration_limit<>0:
self.start_play_state_machine()
else:
self.tick_timer=self.canvas.after(10, self.end_zero)
def end_zero(self):
self.end('normal','zero duration')
def terminate(self,reason):
"""
terminate the player in special circumstances
normal user termination if by key_pressed 'stop'
reason will be killed or error
"""
# circumvents state machine to terminate lower level and then itself.
if self.mplayer<>None:
self.mon.log(self,"sent terminate to mplayerdriver")
self.mplayer.terminate(reason)
self.end('killed',' end without waiting for mplayer to finish') # end without waiting
else:
self.mon.log(self,"terminate, mplayerdriver not running")
self.end('killed','terminate, mplayerdriver not running')
def get_links(self):
return self.track_params['links']
def input_pressed(self,symbol):
if symbol[0:6]=='mplay-':
self.control(symbol[6])
elif symbol == 'pause':
self.pause()
elif symbol=='stop':
self.stop()
# ***************************************
# INTERNAL FUNCTIONS
# ***************************************
#toggle pause
def pause(self):
if self.play_state in (AudioPlayer._PLAYING,AudioPlayer._ENDING) and self.track<>'':
self.mplayer.pause()
return True
else:
self.mon.log(self,"!<pause rejected")
return False
# other control when playing, not currently used
def control(self,char):
if self.play_state==AudioPlayer._PLAYING and self.track<>''and char not in ('q'):
self.mon.log(self,"> send control to mplayer: "+ char)
self.mplayer.control(char)
return True
else:
self.mon.log(self,"!<control rejected")
return False
# respond to normal stop
def stop(self):
# send signal to stop the track to the state machine
self.mon.log(self,">stop received")
self.quit_signal=True
# ***************************************
# sequencing
# ***************************************
"""self. play_state controls the playing sequence, it has the following values.
I am not entirely sure the starting and ending states are required.
- _closed - the mplayer process is not running, mplayer process can be initiated
- _starting - mplayer process is running but is not yet able to receive controls
- _playing - playing a track, controls can be sent
- _ending - mplayer is doing its termination, controls cannot be sent
"""
def init_play_state_machine(self):
self.quit_signal=False
self.play_state=AudioPlayer._CLOSED
def start_play_state_machine(self):
#initialise all the state machine variables
self.duration_count = 0
self.quit_signal=False # signal that user has pressed stop
#play the track
options = self.show_params['mplayer-other-options'] + '-af '+ self.speaker_option+','+self.volume_option + ' '
if self.track<>'':
self.mplayer.play(self.track,options)
self.mon.log (self,'Playing track from show Id: '+ str(self.show_id))
self.play_state=AudioPlayer._STARTING
else:
self.play_state=AudioPlayer._PLAYING
# and start polling for state changes and count duration
self.tick_timer=self.canvas.after(50, self.play_state_machine)
def play_state_machine(self):
self.duration_count+=1
if self.play_state == AudioPlayer._CLOSED:
self.mon.log(self," State machine: " + self.play_state)
return
elif self.play_state == AudioPlayer._STARTING:
self.mon.log(self," State machine: " + self.play_state)
# if mplayer is playing the track change to play state
if self.mplayer.start_play_signal==True:
self.mon.log(self," <start play signal received from mplayer")
self.mplayer.start_play_signal=False
self.play_state=AudioPlayer._PLAYING
self.mon.log(self," State machine: mplayer_playing started")
self.tick_timer=self.canvas.after(50, self.play_state_machine)
elif self.play_state == AudioPlayer._PLAYING:
# self.mon.log(self," State machine: " + self.play_state)
# service any queued stop signals
if self.quit_signal==True or (self.duration_limit>0 and self.duration_count>self.duration_limit):
self.mon.log(self," Service stop required signal or timeout")
# self.quit_signal=False
if self.track<>'':
self.stop_mplayer()
self.play_state = AudioPlayer._ENDING
else:
self.play_state = AudioPlayer._CLOSED
self.end('normal','stop required signal or timeout')
# mplayer reports it is terminating so change to ending state
if self.track<>'' and self.mplayer.end_play_signal:
self.mon.log(self," <end play signal received")
self.mon.log(self," <end detected at: " + str(self.mplayer.audio_position))
self.play_state = AudioPlayer._ENDING
self.tick_timer=self.canvas.after(50, self.play_state_machine)
elif self.play_state == AudioPlayer._ENDING:
# self.mon.log(self," State machine: " + self.play_state)
# if spawned process has closed can change to closed state
# self.mon.log (self," State machine : is mplayer process running? - " + str(self.mplayer.is_running()))
if self.mplayer.is_running() ==False:
self.mon.log(self," <mplayer process is dead")
if self.quit_signal==True:
self.quit_signal=False
self.play_state = AudioPlayer._CLOSED
self.end('normal','quit required or timeout')
elif self.duration_limit>0 and self.duration_count<self.duration_limit:
self.play_state= AudioPlayer._WAITING
self.tick_timer=self.canvas.after(50, self.play_state_machine)
else:
self.play_state = AudioPlayer._CLOSED
self.end('normal','mplayer dead')
else:
self.tick_timer=self.canvas.after(50, self.play_state_machine)
elif self.play_state == AudioPlayer._WAITING:
# self.mon.log(self," State machine: " + self.play_state)
if self.quit_signal==True or (self.duration_limit>0 and self.duration_count>self.duration_limit):
self.mon.log(self," Service stop required signal or timeout from wait")
self.quit_signal=False
self.play_state = AudioPlayer._CLOSED
self.end('normal','mplayer dead')
else:
self.tick_timer=self.canvas.after(50, self.play_state_machine)
def stop_mplayer(self):
# send signal to stop the track to the state machine
self.mon.log(self," >stop mplayer received from state machine")
if self.play_state==AudioPlayer._PLAYING:
self.mplayer.stop()
return True
else:
self.mon.log(self,"!<stop rejected")
return False
# *****************
# ending the player
# *****************
def end(self,reason,message):
# stop the plugin
if self.track_params['plugin']<>'':
self.pim.stop_plugin()
# abort the timer
if self.tick_timer<>None:
self.canvas.after_cancel(self.tick_timer)
self.tick_timer=None
if reason in ('error','killed'):
self.end_callback(reason,message)
self=None
else:
# normal end so do show control and animation
# Control concurrent shows at end
reason,message=self.show_manager.show_control(self.track_params['show-control-end'])
if reason =='error':
self.mon.err(self,message)
self.end_callback(reason,message)
self=None
else:
# clear events list for this track
if self.track_params['animate-clear']=='yes':
self.ppio.clear_events_list(id(self))
# create animation events for ending
reason,message=self.ppio.animate(self.animate_end_text,id(self))
if reason=='error':
self.mon.err(self,message)
self.end_callback(reason,message)
self=None
else:
self.end_callback('normal',"track has terminated or quit")
self=None
# *****************
# displaying things
# *****************
def display_content(self):
#if self.background_file<>'' or self.show_params['show-text']<> '' or #self.track_params['track-text']<> '' or self.enable_menu== True or #self.track_params['clear-screen']=='yes':
if self.track_params['clear-screen']=='yes':
self.canvas.delete('pp-content')
# self.canvas.update()
#background colour
if self.background_colour<>'':
self.canvas.config(bg=self.background_colour)
if self.background_file<>'':
self.background_img_file = self.complete_path(self.background_file)
if not os.path.exists(self.background_img_file):
self.mon.err(self,"Audio background file not found: "+ self.background_img_file)
self.end('error',"Audio background file not found")
else:
pil_background_img=PIL.Image.open(self.background_img_file)
self.background = PIL.ImageTk.PhotoImage(pil_background_img)
self.drawn = self.canvas.create_image(int(self.canvas['width'])/2,
int(self.canvas['height'])/2,
image=self.background,
anchor=CENTER,
tag='pp-content')
# execute the plugin if required
if self.track_params['plugin']<>'':
reason,message,self.track = self.pim.do_plugin(self.track,self.track_params['plugin'],)
if reason <> 'normal':
return reason,message
# display hint text if enabled
if self.enable_menu== True:
self.canvas.create_text(int(self.show_params['hint-x']),
int(self.show_params['hint-y']),
text=self.show_params['hint-text'],
fill=self.show_params['hint-colour'],
font=self.show_params['hint-font'],
anchor=NW,
tag='pp-content')
# display show text if enabled
if self.show_params['show-text']<> ''and self.track_params['display-show-text']=='yes':
self.canvas.create_text(int(self.show_params['show-text-x']),int(self.show_params['show-text-y']),
anchor=NW,
text=self.show_params['show-text'],
fill=self.show_params['show-text-colour'],
font=self.show_params['show-text-font'],
tag='pp-content')
# display track text if enabled
if self.track_params['track-text']<> '':
self.canvas.create_text(int(self.track_params['track-text-x']),int(self.track_params['track-text-y']),
anchor=NW,
text=self.track_params['track-text'],
fill=self.track_params['track-text-colour'],
font=self.track_params['track-text-font'],
tag='pp-content')
self.mon.log(self,"Displayed background and text ")
self.canvas.tag_raise('pp-click-area')
self.canvas.update_idletasks( )
return 'normal',''
# *****************
# utilities
# *****************
def complete_path(self,track_file):
# complete path of the filename of the selected entry
if track_file[0]=="+":
track_file=self.pp_home+track_file[1:]
self.mon.log(self,"Background image is "+ track_file)
return track_file
# *****************
#Test harness follows
# *****************
class Test:
def __init__(self,track,pp_dir,pp_home,show_params,ct):
self.track=track
self.show_params=show_params
self.pp_home=pp_home
self.ct = ct
self.break_from_loop=False
# create and instance of a Tkinter top level window and refer to it as 'my_window'
my_window=Tk()
my_window.title("AudioPlayer Test Harness")
# change the look of the window
my_window.configure(background='grey')
window_width=1500
window_height=900
canvas_height=window_height
canvas_width=window_width
#defne response to main window closing
my_window.protocol ("WM_DELETE_WINDOW", self.terminate)
my_window.geometry("%dx%d+200+20" %(window_width,window_height))
# Always use CTRL-Break key to close the program as a get out of jail
my_window.bind("<Break>",self.e_terminate)
my_window.bind("s", self.play_event)
my_window.bind("p", self.pause_event)
my_window.bind("q", self.stop_event)
my_window.bind("l", self.loop_event)
my_window.bind("n", self.next_event)
#setup a canvas onto which will not be drawn the video!!
canvas = Canvas(my_window, bg='black')
canvas.config(height=canvas_height, width=canvas_width)
canvas.pack()
# make sure focus is set on canvas.
canvas.focus_set()
self.canvas=canvas
#create an instance of PPIO and start polling
self.ppio= PPIO()
self.ppio.init(pp_dir,pp_home,self.canvas,50,self.callback)
self.ppio.poll()
my_window.mainloop()
def callback(self,index,name,edge):
print name,edge
#key presses
def e_terminate(self,event):
self.terminate()
def play_event(self,event):
self.vp=AudioPlayer(self.canvas,self.pp_home,self.show_params,self.ct)
self.vp.play(self.track,self.on_end,self.do_ready,False,self.do_starting,self.do_playing,self.do_finishing)
# toggles pause
def pause_event(self,event):
self.vp.key_pressed('p')
def stop_event(self,event):
self.break_from_loop=True
self.vp.key_pressed('escape')
def loop_event(self,event):
#just kick off the first track, callback decides what to do next
self.break_from_loop=False
self.vp=AudioPlayer(self.canvas,self.pp_home,self.show_params)
self.vp.play(self.track,self.what_next,self,do_ready,False,self.do_starting,self.do_playing,self.do_finishing)
def next_event(self,event):
self.break_from_loop=False
self.vp.key_pressed('down')
def what_next(self,reason,message):
self.vp=None
if reason in ('killed','error'):
self.end(reason,message)
else:
if self.break_from_loop==True:
self.break_from_loop=False
print "test harness: loop interupted"
return
else:
self.vp=AudioPlayer(self.canvas,self.show_params)
self.vp.play(self.track,self.what_next,self.do_starting,self.do_playing,self.do_finishing)
def on_end(self,reason,message):
self.vp=None
print "Test Class: callback from AudioPlayer says: "+ message
if reason in('killed','error'):
self.end(reason,message)
else:
return
def do_ready(self):
print "test class message from AudioPlayer: ready to play"
return
def do_starting(self):
print "test class message from AudioPlayer: do starting"
return
def do_playing(self):
#self.display_time.set(self.time_string(self.vp.audio_position))
# print "test class message from AudioPlayer: do playing"
return
def do_finishing(self):
print "test class message from AudioPlayer: do ending"
return
def terminate(self):
if self.vp ==None:
self.end('killled','killled')
else:
self.vp.terminate('killed')
return
def _end(self,reason,message):
self.ppio.terminate()
exit()
# end of Test Class
if __name__ == '__main__':
pp_dir=sys.path[0]
if not os.path.exists(pp_dir+"/pipresents.py"):
tkMessageBox.showwarning("Pi Presents","Bad Application Directory")
exit()
#Initialise logging
Monitor.log_path=pp_dir
Monitor.global_enable=True
track="/home/pi/pp_home/media/match0.wav"
# track="/home/pi/pp_home/media/01.MP3"
#track = ''
home="/home/pi"
#create a dictionary of options and call the test class
show_params={'mplayer-other-options' : '',
'mplayer-audio' : 'local',
'audio-speaker' : 'stereo',
'duration' : '10',
'background-image' : '/home/pi/pp_home/media/sunset.gif',
'show-text': 'show text',
'show-text-font': 'arial 20 bold',
'show-text-colour': 'white',
'show-text-x': '400',
'show-text-y' : '100',
'track-text': 'track text',
'track-text-font': 'arial 20 bold',
'track-text-colour': 'white',
'track-text-x': '600',
'track-text-y' : '700',
'animate-begin' : 'out1 on 1\nout1 off 20',
'animate-end' : '',
'animate-clear': 'yes'
}
test=Test(track, pp_dir, home,show_params,show_params)