In this article we will see how we can create a Instance class instance in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Instance act as a main object of the VLC library with the Instance object we can create media player, list player or any other player available in VLC. Instance class the base classed used in VLC to create various objects.
In order to do this we will use vlc.Instance
method
Syntax : vlc.Instance()
Argument : It takes no argument
Return : It returns Instance object
Below is the implementation
import vlc
import time
player = vlc.Instance()
media = player.media_new( "death_note.mkv" )
media_player = player.media_player_new()
media_player.set_media(media)
media_player.video_set_scale( 0.6 )
media_player.play()
time.sleep( 5 )
|
Output :

Another example
Below is the implementation
import vlc
import time
player = vlc.Instance()
media = player.media_new( "1.mp4" )
media_player = player.media_player_new()
media_player.set_media(media)
media_player.video_set_scale( 0.6 )
media_player.play()
time.sleep( 5 )
|
Output :
