Browse Source

Add a callback within FileProxyPlayable

Useful for applications looking to confirm a fileproxyplayable has fully
completed _before_ doing something with it (e.g. caching)
feature/storage
Andrei 8 years ago
parent
commit
4fcdb025d0
  1. 2
      disco/voice/playable.py

2
disco/voice/playable.py

@ -285,6 +285,7 @@ class DCADOpusEncoderPlayable(BasePlayable, AbstractOpus, OpusEncoder):
class FileProxyPlayable(BasePlayable, AbstractOpus): class FileProxyPlayable(BasePlayable, AbstractOpus):
def __init__(self, other, output, *args, **kwargs): def __init__(self, other, output, *args, **kwargs):
self.flush = kwargs.pop('flush', False) self.flush = kwargs.pop('flush', False)
self.on_complete = kwargs.pop('on_complete', None)
super(FileProxyPlayable, self).__init__(*args, **kwargs) super(FileProxyPlayable, self).__init__(*args, **kwargs)
self.other = other self.other = other
self.output = output self.output = output
@ -300,6 +301,7 @@ class FileProxyPlayable(BasePlayable, AbstractOpus):
self.output.flush() self.output.flush()
else: else:
self.output.flush() self.output.flush()
self.on_complete()
self.output.close() self.output.close()
return frame return frame

Loading…
Cancel
Save