Module vlc :: Class State
[hide private]
[frames] | no frames]

Class State

source code

      object --+                
               |                
       ??._CData --+            
                   |            
_ctypes._SimpleCData --+        
                       |        
           ctypes.c_uint --+    
                           |    
                       _Enum --+
                               |
                              State

Note the order of libvlc_state_t enum must match exactly the order of See mediacontrol_playerstatus, See input_state_e enums, and videolan.libvlc.state (at bindings/cil/src/media.cs). expected states by web plugins are: idle/close=0, opening=1, playing=3, paused=4, stopping=5, ended=6, error=7.

Nested Classes [hide private]
  __ctype_be__
Note the order of libvlc_state_t enum must match exactly the order of See mediacontrol_playerstatus, See input_state_e enums, and videolan.libvlc.state (at bindings/cil/src/media.cs).
  __ctype_le__
Note the order of libvlc_state_t enum must match exactly the order of See mediacontrol_playerstatus, See input_state_e enums, and videolan.libvlc.state (at bindings/cil/src/media.cs).
Instance Methods [hide private]

Inherited from _Enum: __eq__, __hash__, __ne__, __repr__, __str__

Inherited from _ctypes._SimpleCData: __ctypes_from_outparam__, __init__, __new__, __nonzero__

Inherited from unreachable._CData: __reduce__, __setstate__

Inherited from object: __delattr__, __format__, __getattribute__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  _enum_names_ = {0: 'NothingSpecial', 1: 'Opening', 2: 'Bufferi...
  Buffering = vlc.State.Buffering
  Ended = vlc.State.Ended
  Error = vlc.State.Error
  NothingSpecial = vlc.State.NothingSpecial
  Opening = vlc.State.Opening
  Paused = vlc.State.Paused
  Playing = vlc.State.Playing
  Stopped = vlc.State.Stopped

Inherited from ctypes.c_uint: _type_

Properties [hide private]

Inherited from _ctypes._SimpleCData: value

Inherited from unreachable._CData: _b_base_, _b_needsfree_

Inherited from unreachable._CData (private): _objects

Inherited from object: __class__

Class Variable Details [hide private]

_enum_names_

Value:
{0: 'NothingSpecial',
 1: 'Opening',
 2: 'Buffering',
 3: 'Playing',
 4: 'Paused',
 5: 'Stopped',
 6: 'Ended',
 7: 'Error'}