Thursday, July 4, 2024
HomeLanguagesPythonPython VLC Instance – Creating MediaPlayer Instance

Python VLC Instance – Creating MediaPlayer Instance

In this article we will see how we can create a MediaPlayer instance from the Instance class 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. Media player object is used play a single or multiple media.

In order to do this we will use media_player_new method with the Instance object

Syntax : instance.media_player_new()

Argument : It takes no argument but it can take uri as optional argument

Return : It returns MediaPlayer object

Below is the implementation




# importing vlc module
import vlc
  
# importing time module
import time
  
# creating Instance class object
player = vlc.Instance()
  
# creating a new media
media = player.media_new("death_note.mkv")
  
# creating a media player object
media_player = player.media_player_new()
  
media_player.set_media(media)
  
# setting video scale
media_player.video_set_scale(0.6)
  
# start playing video
media_player.play()
  
  
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)


Output :

Another example
Below is the implementation




# importing vlc module
import vlc
  
# importing time module
import time
  
# creating Instance class object
player = vlc.Instance()
  
# creating a new media
media = player.media_new("1.mp4")
  
# creating a media player object
media_player = player.media_player_new()
  
media_player.set_media(media)
  
# setting video scale
media_player.video_set_scale(0.6)
  
# start playing video
media_player.play()
  
  
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)


Output :

Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments