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
Error:
Comando con el que lo ejecuto en la terminal del raspbian:
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!!!
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
0