Created
June 8, 2017 09:47
-
-
Save jatinkrmalik/887425b2d9d2410a12b17fda0d07d224 to your computer and use it in GitHub Desktop.
OMX Player
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Testing python-omxplayer-wrapper from https://github.com/willprice/python-omxplayer-wrapper | |
from omxplayer import OMXPlayer as op | |
from time import sleep | |
file_path = '../audio/Baby.mkv' | |
player = op(file_path) | |
player.play() | |
sleep(10) | |
player.pause() | |
sleep(10) | |
player.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment