-
-
Save dudeitssm/7eb6976c583960b0cd1b9f2d6c493624 to your computer and use it in GitHub Desktop.
XBMC automatically play all videos in a permanent loop. Ideal for video presentations, digital signage or party mode.
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
# See also http://wiki.xbmc.org/index.php?title=Autoexec.py | |
# Put this into the userdata folder, see http://wiki.xbmc.org/index.php?title=Userdata for details where this is for each platform | |
# on linux,the userdata folder is ~/.kodi/userdata/ | |
import xbmc | |
xbmc.executebuiltin('xbmc.PlayMedia("/storage/videos/","isdir")') | |
xbmc.executebuiltin('xbmc.PlayerControl(repeatall)') | |
xbmc.executebuiltin("Action(Fullscreen)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment