Warning
Deprecated. Use Player
Constructor:
Methods:
delete() dispatch_event(event_type, *args) Dispatch a single event to the attached handlers. event(*args) Function decorator for an event handler. get_texture() next() next_source() pause() play() pop_handlers() Pop the top level of event handlers off the stack. push_handlers(*args, **kwargs) Push a level onto the top of the handler stack, then attach zero or more event handlers. queue(source) register_event_type(name) Register an event type with the dispatcher. remove_handler(name, handler) Remove a single event handler. remove_handlers(*args, **kwargs) Remove event handlers from the event stack. seek(time) seek_next_frame() Step forwards one video frame in the current Source. set_handler(name, handler) Attach a single event handler. set_handlers(*args, **kwargs) Attach one or more event handlers to the top level of the handler stack. update_texture([dt, time])
Events:
on_eos() on_player_eos() The player ran out of sources. on_source_group_eos() The current source group ran out of data.
Attributes:
EOS_LOOP Type: str EOS_NEXT Type: str EOS_PAUSE Type: str EOS_STOP Type: str cone_inner_angle cone_orientation cone_outer_angle cone_outer_gain eos_action Set the behaviour of the player when it reaches the end of the current source. event_types Type: list max_distance min_distance pitch playing position source time volume
Methods
- ManagedSoundPlayer.delete()
- ManagedSoundPlayer.dispatch_event(event_type, *args)
Dispatch a single event to the attached handlers.
The event is propagated to all handlers from from the top of the stack until one returns EVENT_HANDLED. This method should be used only by EventDispatcher implementors; applications should call the dispatch_events method.
Since pyglet 1.2, the method returns EVENT_HANDLED if an event handler returned EVENT_HANDLED or EVENT_UNHANDLED if all events returned EVENT_UNHANDLED. If no matching event handlers are in the stack, False is returned.
Parameters:
- event_type (str) – Name of the event.
- args (sequence) – Arguments to pass to the event handler.
Return type: bool or None
Returns: (Since pyglet 1.2) EVENT_HANDLED if an event handler returned EVENT_HANDLED; EVENT_UNHANDLED if one or more event handlers were invoked but returned only EVENT_UNHANDLED; otherwise False. In pyglet 1.1 and earler, the return value is always None.
- ManagedSoundPlayer.event(*args)
Function decorator for an event handler.
Usage:
win = window.Window() @win.event def on_resize(self, width, height): # ...or:
@win.event('on_resize') def foo(self, width, height): # ...
- ManagedSoundPlayer.get_texture()
- ManagedSoundPlayer.next()
- ManagedSoundPlayer.next_source()
- ManagedSoundPlayer.pause()
- ManagedSoundPlayer.play()
- ManagedSoundPlayer.pop_handlers()
Pop the top level of event handlers off the stack.
- ManagedSoundPlayer.push_handlers(*args, **kwargs)
Push a level onto the top of the handler stack, then attach zero or more event handlers.
If keyword arguments are given, they name the event type to attach. Otherwise, a callable’s __name__ attribute will be used. Any other object may also be specified, in which case it will be searched for callables with event names.
- ManagedSoundPlayer.queue(source)
- classmethod ManagedSoundPlayer.register_event_type(name)
Register an event type with the dispatcher.
Registering event types allows the dispatcher to validate event handler names as they are attached, and to search attached objects for suitable handlers.
Parameters: name (str) – Name of the event to register.
- ManagedSoundPlayer.remove_handler(name, handler)
Remove a single event handler.
The given event handler is removed from the first handler stack frame it appears in. The handler must be the exact same callable as passed to set_handler, set_handlers or push_handlers; and the name must match the event type it is bound to.
No error is raised if the event handler is not set.
Parameters:
- name (str) – Name of the event type to remove.
- handler (callable) – Event handler to remove.
- ManagedSoundPlayer.remove_handlers(*args, **kwargs)
Remove event handlers from the event stack.
See push_handlers for the accepted argument types. All handlers are removed from the first stack frame that contains any of the given handlers. No error is raised if any handler does not appear in that frame, or if no stack frame contains any of the given handlers.
If the stack frame is empty after removing the handlers, it is removed from the stack. Note that this interferes with the expected symmetry of push_handlers and pop_handlers.
- ManagedSoundPlayer.seek(time)
- ManagedSoundPlayer.seek_next_frame()
Step forwards one video frame in the current Source.
- ManagedSoundPlayer.set_handler(name, handler)
Attach a single event handler.
Parameters:
- name (str) – Name of the event type to attach to.
- handler (callable) – Event handler to attach.
- ManagedSoundPlayer.set_handlers(*args, **kwargs)
Attach one or more event handlers to the top level of the handler stack.
See push_handlers for the accepted argument types.
- ManagedSoundPlayer.update_texture(dt=None, time=None)
Events
- ManagedSoundPlayer.on_eos()
- ManagedSoundPlayer.on_player_eos()
The player ran out of sources.
- ManagedSoundPlayer.on_source_group_eos()
The current source group ran out of data.
The default behaviour is to advance to the next source group if possible.
Attributes
- ManagedSoundPlayer.EOS_LOOP = 'loop'
- ManagedSoundPlayer.EOS_NEXT = 'next'
- ManagedSoundPlayer.EOS_PAUSE = 'pause'
- ManagedSoundPlayer.EOS_STOP = 'stop'
- ManagedSoundPlayer.cone_inner_angle
- ManagedSoundPlayer.cone_orientation
- ManagedSoundPlayer.cone_outer_angle
- ManagedSoundPlayer.cone_outer_gain
- ManagedSoundPlayer.eos_action
Set the behaviour of the player when it reaches the end of the current source.
This must be one of the constants EOS_NEXT, EOS_PAUSE, EOS_STOP or EOS_LOOP.
Warning
Deprecated. Use SourceGroup.loop and SourceGroup.advance_after_eos
Type: str
- ManagedSoundPlayer.event_types = ['on_eos', 'on_player_eos', 'on_source_group_eos']
- ManagedSoundPlayer.max_distance
- ManagedSoundPlayer.min_distance
- ManagedSoundPlayer.pitch
- ManagedSoundPlayer.playing
- ManagedSoundPlayer.position
- ManagedSoundPlayer.source
- ManagedSoundPlayer.time
- ManagedSoundPlayer.volume