Skip to content

Instantly share code, notes, and snippets.

@itapai
Created April 28, 2022 07:07
Show Gist options
  • Select an option

  • Save itapai/76cef4e3dd32d171e83f302f1fad8144 to your computer and use it in GitHub Desktop.

Select an option

Save itapai/76cef4e3dd32d171e83f302f1fad8144 to your computer and use it in GitHub Desktop.
omxplayer loop script
#!/bin/bash
while true; do
for f in $1/*.mp4; do
omxplayer -o local $f >/dev/null
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment