forked from lrvick/python-abx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabx.py
executable file
·338 lines (291 loc) · 13.9 KB
/
abx.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
#! /usr/bin/env python2.7
# -*- coding: utf-8 -*-
import sys
import gtk
import gst
import random
import gobject
import math
# the gtk class
class AbxComparator:
# basic variables for the program
# sound_player gives us a playbin2 instance
sound_player = gst.element_factory_make("playbin2", "sound_player")
a_location, a_duration, b_duration, b_location = None, None, None, None
current_location = None
correct, incorrect = 0, 0
begin_sample, end_sample, current_sample = 0, 0, 0
# keep track of whether we're dragging the position bar
mouse_active_on_hscale = False
# set the locations if available
def __init__(self, a_location=None, b_location=None):
ui = "abx-comparator.ui"
builder = gtk.Builder()
builder.add_from_file(ui)
builder.connect_signals(self)
window = builder.get_object("abx_audio_window")
window.show_all()
# define elements of the .ui so we can access them
self.a_button = builder.get_object("a_button")
self.b_button = builder.get_object("b_button")
self.x_button = builder.get_object("x_button")
self.isa_button = builder.get_object("isa_button")
self.isb_button = builder.get_object("isb_button")
self.stop_button = builder.get_object("stop_button")
self.repeat_button = builder.get_object("repeat_button")
self.audio_position = builder.get_object("audio_position")
self.audio_adjustment = builder.get_object("adjustment1")
self.show_results_button = builder.get_object("show_results_button")
self.text_buffer = builder.get_object("resultsview").get_buffer()
self.begin_button = builder.get_object("startbutton")
self.end_button = builder.get_object("endbutton")
# a few obvious handlers
def _on_main_window_delete_event(self, *args):
self.quit()
def _on_quit_button_clicked(self, *args):
self.quit()
def _on_show_results_button_toggled(self, *args):
self.update_results()
def _on_clear_results_button_clicked(self, *args):
self.correct, self.incorrect = 0, 0
self.update_results()
# the _on_*_button_toggled handlers handle playback and pausing.
# TODO may want to move some of these functions later
def _on_a_button_toggled(self, *args):
if self.a_button.get_active():
# if paused, unpause
if self.sound_player.get_state()[1] == gst.STATE_PAUSED:
self.sound_player.set_state(gst.STATE_PLAYING)
gobject.timeout_add(50, self.update_slider)
return
# if we're playing now on a different button, set a place holder for the position so we can switch it immediately
if self.sound_player.get_state()[1] == gst.STATE_PLAYING:
self.current_sample = self.sound_player.query_position(gst.FORMAT_TIME)[0]
else:
self.current_sample = self.begin_sample
self.phoenix()
self.x_button.set_active(False)
self.b_button.set_active(False)
self.sound_player.set_property('uri', self.a_location)
self.sound_player.set_state(gst.STATE_PLAYING)
# workaround for a playbin2 bug - we have to get the current state before it starts playing for some reason. check upstream?
self.sound_player.get_state()
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, self.current_sample)
self.begin_button.set_sensitive(True)
self.end_button.set_sensitive(True)
# set a 50 msec timeout to update the position slider
gobject.timeout_add(50, self.update_slider)
else:
self.sound_player.set_state(gst.STATE_PAUSED)
# the other buttons are similar...
def _on_b_button_toggled(self, *args):
if self.b_button.get_active():
if self.sound_player.get_state()[1] == gst.STATE_PAUSED:
self.sound_player.set_state(gst.STATE_PLAYING)
gobject.timeout_add(50, self.update_slider)
return
if self.sound_player.get_state()[1] == gst.STATE_PLAYING:
self.current_sample = self.sound_player.query_position(gst.FORMAT_TIME)[0]
else:
self.current_sample = self.begin_sample
self.phoenix()
self.a_button.set_active(False)
self.x_button.set_active(False)
self.sound_player.set_property('uri', self.b_location)
self.sound_player.set_state(gst.STATE_PLAYING)
self.sound_player.get_state()
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, self.current_sample)
self.begin_button.set_sensitive(True)
self.end_button.set_sensitive(True)
gobject.timeout_add(50, self.update_slider)
else:
self.sound_player.set_state(gst.STATE_PAUSED)
def _on_x_button_toggled(self, *args):
if self.x_button.get_active():
if self.sound_player.get_state()[1] == gst.STATE_PAUSED:
self.sound_player.set_state(gst.STATE_PLAYING)
gobject.timeout_add(50, self.update_slider)
return
if self.sound_player.get_state()[1] == gst.STATE_PLAYING:
self.current_sample = self.sound_player.query_position(gst.FORMAT_TIME)[0]
else:
self.current_sample = self.begin_sample
self.phoenix()
self.a_button.set_active(False)
self.b_button.set_active(False)
self.sound_player.set_property('uri', self.current_location)
self.sound_player.set_state(gst.STATE_PLAYING)
self.sound_player.get_state()
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, self.current_sample)
self.begin_button.set_sensitive(True)
self.end_button.set_sensitive(True)
gobject.timeout_add(50, self.update_slider)
else:
self.sound_player.set_state(gst.STATE_PAUSED)
# if user IDs a song, stop playing, and check for correct, giving points accordingly
def _on_isa_button_clicked(self, *args):
self.stop()
if self.current_location == self.a_location:
self.correct += 1
else:
self.incorrect += 1
self.update_gui()
def _on_isb_button_clicked(self, *args):
self.stop()
if self.current_location == self.b_location:
self.correct += 1
else:
self.incorrect += 1
self.update_gui()
# set positions to loop over section of audio
def _start_selection_button_toggled(self, *args):
if self.begin_button.get_active():
# set rounded version of time as label text
self.begin_button.set_label(str("%.2f" %(self.sound_player.query_position(gst.FORMAT_TIME)[0] / gst.MSECOND / 1000.0)))
# record position to begin_sample
self.begin_sample = self.sound_player.query_position(gst.FORMAT_TIME)[0]
else:
self.begin_button.set_label("Start")
self.begin_sample = 0
def _end_selection_button_toggled(self, *args):
if self.end_button.get_active():
self.end_button.set_label(str("%.2f" %(self.sound_player.query_position(gst.FORMAT_TIME)[0] / gst.MSECOND / 1000.0)))
self.end_sample = self.sound_player.query_position(gst.FORMAT_TIME)[0]
# we've just set an "end position", so immediately loop to the begin_sample
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, self.begin_sample)
else:
self.end_button.set_label("End")
self.end_sample = 0
def _on_stop_button_clicked(self, *args):
self.stop()
def _a_file_chosen(self, button):
self.a_location = button.get_uri()
self.a_duration = self.load_file(self.a_location)
self.update_gui()
def _b_file_chosen(self, button):
self.b_location = button.get_uri()
self.b_duration = self.load_file(self.b_location)
self.update_gui()
# set the bool for mouse dragging when we're active
def _hscale_button_press(self, *args):
self.mouse_active_on_hscale = True
def _hscale_button_release(self, *args):
# seek to the new location
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, self.audio_adjustment.value)
# and then set the bool. not the other way around to avoid potential problems with timing
self.mouse_active_on_hscale = False
return
def load_file(self, location):
# load a temporary playbin2 instance, and use it to determine duration
tempPlayer = gst.element_factory_make("playbin2", "tempPlayer")
tempPlayer.set_property('uri', location)
tempPlayer.set_state(gst.STATE_PLAYING)
tempPlayer.get_state()
try:
duration = tempPlayer.query_duration(gst.FORMAT_TIME)[0]
except:
print("Couldn't determine stream duration.\n",
"Unsupported stream?")
tempPlayer.set_state(gst.STATE_NULL)
print(location, duration)
return duration
def update_gui(self, *args):
# only run if both files are loaded
if (self.a_duration != None and self.b_duration != None):
# set pos. slider to min of two files to prevent user from "cheating"
self.audio_adjustment.upper = min(self.a_duration, self.b_duration)
self.enable_buttons()
# prepare test
if random.random() > 0.5:
self.current_location = self.a_location
else:
self.current_location = self.b_location
self.update_results()
def update_results(self, *args):
if self.show_results_button.get_active():
score_value = str(self.correct)
# hackish way of calculating p
# p = 0.5 ^ (number of trials) * summation of the binominal coefficient from (number of guesses) to (number of attempts)
# see http://mathforum.org/library/drmath/view/71267.html and http://vassarstats.net/textbook/index.html chapter 5 append. 5
n = self.correct + self.incorrect
k = self.correct
p = 0
for x in range(k, n + 1):
p = p + math.factorial(n) / (math.factorial(x) * math.factorial(n - x)) * 0.5 ** n
p_str = "%.2f%%" % round(p * 100, 2)
else:
score_value, p_str = "hidden", "hidden"
# set the oddly named text_buffer of the GtkTextBox so the user can see his score
self.text_buffer.set_text("Score: " + score_value + " / " + str(self.correct + self.incorrect) + "\np = " + str(p_str))
# run on a timer every 50msec whenever sound_player is playing
def update_slider(self, *args):
# don't deactivate if dragging position slider, just bypass
if self.mouse_active_on_hscale:
return True
# if we're not playing, stop the timer
if self.sound_player.get_state()[1] == gst.STATE_NULL:
return False
# if we've run past the slider or past the user's limit, stop
if self.sound_player.query_position(gst.FORMAT_TIME)[0] > self.audio_adjustment.upper or self.sound_player.query_position(gst.FORMAT_TIME)[0] > self.end_sample and self.end_sample != 0:
#repeat if selected
if self.repeat_button.get_active():
# sanity check the begin_sample, and go there if appropriate
if self.end_sample > self.begin_sample:
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, self.begin_sample)
else:
self.sound_player.seek_simple(gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH, 0.0)
else:
self.stop()
return False
# seems to fail occasionally if still seeking, so simply get_state() and wait for the next timed update
# TODO: is get_state() actually doing anything?
try:
self.audio_adjustment.value = self.sound_player.query_position(gst.FORMAT_TIME)[0]
except:
self.sound_player.get_state()
return self.sound_player.get_state()[1] == gst.STATE_PLAYING
# phoenix(), a dirty hack to work around bugs in playbin2
# idea from the quodlibet player
# see http://code.google.com/p/quodlibet/source/browse/quodlibet/quodlibet/player/gstbe.py
def phoenix (self, *args):
self.sound_player.set_state(gst.STATE_NULL)
self.sound_player.get_state()
self.sound_player = None
self.sound_player = gst.element_factory_make("playbin2", "sound_player")
# and a few obvious handlers
def enable_buttons(self, *args):
self.a_button.set_sensitive(True)
self.x_button.set_sensitive(True)
self.b_button.set_sensitive(True)
self.isa_button.set_sensitive(True)
self.isb_button.set_sensitive(True)
self.stop_button.set_sensitive(True)
self.audio_position.set_sensitive(True)
def stop(self, *args):
self.a_button.set_active(False)
self.b_button.set_active(False)
self.x_button.set_active(False)
self.begin_button.set_sensitive(False)
self.end_button.set_sensitive(False)
self.sound_player.set_state(gst.STATE_NULL)
self.audio_adjustment.value = 0
def quit(self, *args):
gtk.main_quit(*args)
# "MAIN" CODE STARTS HERE
# set window icon
gtk.window_set_default_icon_from_file("abx-comparator.svg")
a, b = None, None
# if we have at least 2 arguments, go ahead and set file A
if 2 < len(sys.argv) <= 3:
a = sys.argv[1]
if not gst.uri_is_valid(a):
a = "file://" + os.path.abspath(a)
# and if we have 3, set file B as well
if len(sys.argv) == 3:
b = sys.argv[2]
if not gst.uri_is_valid(b):
b = "file://" + os.path.abspath(b)
# define the app class
app = AbxComparator(a, b)
# launch the window
gtk.main()