Skip to content

Instantly share code, notes, and snippets.

@jatinkrmalik
Created June 8, 2017 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jatinkrmalik/887425b2d9d2410a12b17fda0d07d224 to your computer and use it in GitHub Desktop.
Save jatinkrmalik/887425b2d9d2410a12b17fda0d07d224 to your computer and use it in GitHub Desktop.
OMX Player
# 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