En este artículo veremos cómo podemos obtener el ancho del objeto MediaPlayer en el módulo python vlc. VLC media player es un software de reproductor de medios multiplataforma portátil gratuito y de código abierto y un servidor de transmisión de medios desarrollado por el proyecto VideoLAN. El objeto MediPlyer es el objeto básico en el módulo vlc para reproducir el video. Podemos crear un objeto MediaPlayer con la ayuda del MediaPlayer
método. Podemos obtener el ancho del video seleccionado pasando el índice del video, si no se especifica ningún índice, se devuelve el ancho del video en curso.
Para hacer esto, usaremos
video_get_width
el método con el objeto MediaPlayer .Sintaxis: media_player.video_get_width(n)
Argumento: Toma entero como argumento opcional
Retorno: Devuelve entero
A continuación se muestra la implementación.
# importing vlc module import vlc # importing time module import time # creating vlc media player object media_player = vlc.MediaPlayer() # media resource locator mrl = "death_note.mkv" # setting mrl to the media player media_player.set_mrl(mrl) # start playing video media_player.play() # wait so the video can be played for 5 seconds # irrespective for length of video time.sleep(5) # getting width at index 0 value = media_player.video_get_width(0) # printing width print("Width at Index 0 : ") print(value)
Producción :
Width at Index 0 : 1280
Otro ejemplo
A continuación se muestra la implementación.
# importing vlc module import vlc # importing time module import time # creating vlc media player object media_player = vlc.MediaPlayer() # media resource locator mrl = "1.mp4" # setting mrl to the media player media_player.set_mrl(mrl) # start playing video media_player.play() # wait so the video can be played for 5 seconds # irrespective for length of video time.sleep(5) # getting width at index 0 value = media_player.video_get_width(0) # printing width print("Width at Index 0 : ") print(value)
Producción :
Width at Index 0 : 854
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA