Python - Errores python y omxplayer, me ayudan?!

 
Vista:
sin imagen de perfil

Errores python y omxplayer, me ayudan?!

Publicado por Luciano (1 intervención) el 30/12/2016 11:56:28
Hola muchachos estoy queriendo correr este script y me devuelve un error

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from omxplayer import OMXPlayer
from time import sleep
 
file_path_or_url = 'path/to/file.mp4'
 
# This will start an `omxplayer` process, this might
# fail the first time you run it, currently in the
# process of fixing this though.
player = OMXPlayer(file_path_or_url)
 
# The player will initially be paused
 
player.play()
sleep(5)
player.pause()
 
# Kill the `omxplayer` process gracefully.
player.quit()

Error:
1
2
3
4
5
Traceback (most recent call last):
  File "example.py", line 9, in <module>
    player = omxplayer(file_path_or_url)
NameError: name 'omxplayer' is not defined
https://github.com/willprice/python-omxplayer-wrapper

Comando con el que lo ejecuto en la terminal del raspbian:
1
python example.py

En esta pagina explican como instalar y dan 2 los script de ejemplo:
https://github.com/willprice/python-omxplayer-wrapper

Alguien podría darme una mano?! Sinceramente busque todo tipo de información por internet antes de publicar este post pero al no encontrar nadie con el mismo problema acudo a ustedes!

Saludos y feliz año nuevo!!!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

Errores python y omxplayer, me ayudan?!

Publicado por Jhair (1 intervención) el 16/09/2019 04:25:19
hola tengo el mismo problema lo pudiste solucionar?
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar