Module Audio :: Class StreamingSound
[hide private]
[frames] | no frames]

Class StreamingSound

source code

object --+    
         |    
     Sound --+
             |
 Task.Task --+
             |
            StreamingSound

Instance Methods [hide private]
 
__init__(self, engine, channel, fileName)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
play(self) source code
 
stop(self) source code
 
setVolume(self, volume) source code
 
fadeout(self, time) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Inherited from Task.Task: run, started, stopped

Static Methods [hide private]
 
__new__(cls, engine, channel, fileName)
Returns: a new object with type S, a subtype of T
source code
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, engine, channel, fileName)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: Sound.__init__

__new__(cls, engine, channel, fileName)
Static Method

source code 
Returns:
a new object with type S, a subtype of T

Overrides: object.__new__
(inherited documentation)

play(self)

source code 
Overrides: Sound.play

stop(self)

source code 
Overrides: Sound.stop

setVolume(self, volume)

source code 
Overrides: Sound.setVolume

fadeout(self, time)

source code 
Overrides: Sound.fadeout