Metadata-Version: 1.0
Name: python-vlc
Version: 1.0.0.90
Summary: VLC bindings for python.
Home-page: http://wiki.videolan.org/PythonBinding
Author: Olivier Aubert
Author-email: olivier.aubert@liris.cnrs.fr
License: GPL
Description: VLC bindings for python.
        
        This module provides bindings for the native libvlc API of the VLC
        video player. Documentation can be found on the VLC wiki :
        http://wiki.videolan.org/ExternalAPI
        
        This module also provides a MediaControl object, which implements an
        API inspired from the OMG Audio/Video Stream 1.0 specification.
        Documentation can be found on the VLC wiki :
        http://wiki.videolan.org/PythonBinding
        
        Example session (for the MediaControl API):
        
        import vlc
        mc=vlc.MediaControl(['--verbose', '1'])
        mc.playlist_add_item('movie.mpg')
        
        # Start the movie at 2000ms
        p=vlc.Position()
        p.origin=vlc.RelativePosition
        p.key=vlc.MediaTime
        p.value=2000
        mc.start(p)
        # which could be abbreviated as
        # mc.start(2000)
        # for the default conversion from int is to make a RelativePosition in MediaTime
        
        # Display some text during 2000ms
        mc.display_text('Some useless information', 0, 2000)
        
        # Pause the video
        mc.pause(0)
        
        # Get status information
        mc.get_stream_information()
        
Keywords: vlc,video
Platform: UNKNOWN
