Index: python-vlc-1.1.2/README.module =================================================================== --- python-vlc-1.1.2.orig/README.module +++ python-vlc-1.1.2/README.module @@ -42,12 +42,14 @@ directory as the libvlc.dll file (standa >>> import vlc >>> vlc.libvlc_get_version() - '1.0.0 Goldeneye' + '2.2.6 Umbrella' - >>> e=vlc.VLCException() - >>> i=vlc.libvlc_new(0, [], e) + >>> i=vlc.libvlc_new(0, []) >>> i - >>> vlc.libvlc_audio_get_volume(i,e) + >>> p=vlc.libvlc_media_player_new(i) + >>> p + + >>> vlc.libvlc_audio_get_volume(p) 50 - Using wrapper classes: