Make a playlist and play that. You need to decide based on your requirements.
Posts by vpeter
-
-
-
-
1GB is enough for the next 5 years...

You know the famous quote?
Quote"640K ought to be enough for anybody."
-
How do I make a USB stick bootable?
You write disk image to USB stick with a dedicated program.
-
You are using LibreELEC v8 which doesn't have this functionality. That's why you need to run it from autostart.sh or make appropriate service.
-
Maybe you should tell us which image are you using? Maybe this functionality is not even in your build.
-
LibreELEC settings in Kodi
-
I'm using 32GB sd cards and didn't have such problems.
To eliminate app error one other option is to unpack img.gz file and write it with some other tool. Like Win32DiskImager, Rufus, ...
-
Did you even enable firewall in LibreELEC settings? There are 4 options: Custom/Off/Home/Public. Set to custom and it will be used on boot.
-
-
-
mohammadsaeed01: Try Change Logo
-
You don't need to add anything to autostart.sh file because LCDd is service addon and starts automatically. You just need to set driver name in addon settings.
-
-
Enable debug in kodi, press blue key and check what you got in log.
Try using this one for blue button:
Code<m mod="ctrl">XBMC.RunScript(/storage/.kodi/userdata/turnon_keyboard.py)</m> --> <!-- blue button, MCE My music -->All 4 buttons from https://kodi.wiki/view/list_of_mce_remote_controls
-
-
XBMC.RunScript can execute only python script I think. I think the best would be to rewrote above script to python. To copy file use How do I copy a file in Python? - Stack Overflow and for notification xbmc.executebuiltin('Notification.
Maybe something like
Python#!/usr/bin/python import xbmc from shutil import copyfile copyfile('/storage/.kodi/userdata/bkpmaps/numbkeyboard.xml', '/storage/.kodi/userdata/keymaps/keyboard.xml') xbmc.executebuiltin('Action(reloadkeymaps)') xbmc.executebuiltin('Notification(Kodi Info, Keyboard Disabled, 7000, http://powerpi.de/wp-content/uploads/powerpi/powerpi_ambi_thumb_off.jpg)')