Author Topic: XBMC/KODI settings commands  (Read 4569 times)

0 Members and 1 Guest are viewing this topic.

PegLegTV

  • $upporter
  • Sr. Member
  • *****
  • Posts: 499
  • Karma: 43
    • View Profile
XBMC/KODI settings commands
« on: May 06, 2015, 11:19:41 PM »
These commands are used to adjust XBMC/KODI system settings

List was last edited: June 13th

This is a list of all commands included in the Group attached below

  • Set Kodi Auto Play next episode
  • Set Kodi Auto Play next Song
  • Set Kodi Skin Zoom
  • Set Kodi Navigation Sounds
  • Set Kodi RSS On/Off
  • Set Kodi Show Parent Directory Items to
  • Set Kodi Show File Extensions to {1}
  • set Kodi Ignore the word "the" when sorting to {1}
  • Set Kodi Allow file renaming and deletion to {1}
  • Set Kodi Show "Add Source" button in file list to {1}
  • Set Kodi Show hidden files and directories to {1}
  • Set Kodi Show compilation artists to {1}
  • Set Kodi music library download info to {1}
  • Set Kodi music library over ride tags to {1}
  • Set Kodi music library update on startup to {1}
  • Set Kodi Hide progress of library updates to {1}
  • Set Kodi music player queue by default to {1}
  • Set Kodi music player replay gain type to {1}
  • Set Kodi music player replay gain pre amp to {1}
  • Set Kodi music player replay gain no gain pre amp to {1}
  • Set Kodi Avoid clipping on replay gained files to {1}
  • Set Kodi Crossfade between songs to {1}
  • Set Kodi Crossfade between songs on the same album to {1}
  • Set Kodi Enable tag reading to {1}
  • Set Kodi Search for thumbnails on remote shares to {1}
  • Set Kodi Autorun CDs when inserted in drive to {1}
  • Set Kodi Lookup audio CD track names from freedb.org to {1}
  • Set Kodi Select which audio encoder to use when ripping to {1}
  • Set Kodi Select which quality you want to rip your files to {1}
  • Set Kodi Select which bitrate to use for the specified audio encoder for audio compression to {1}
  • Set Kodi For FLAC define compression level to {1}
  • Set Kodi Auto eject disc after rip is complete to {1}
  • Set Kodi Enable karaoke support to {1}
  • Set Kodi Show song selector automatically to {1}
  • Set Kodi Select the size of the font used during karaoke to {1}
  • Set Kodi Select the font color used during karaoke to {1}
  • Set Kodi Show EXIF picture information to {1}
  • Set Kodi Automatically generate thumbnails to {1}
  • Set Kodi Rotate pictures using EXIF information to {1}
  • Set Kodi Show video files in listings to {1}
  • Set Kodi Slideshow Amount of time to display each image to {1}
  • Set Kodi SlideShow Use pan and zoom effects to {1}
  • Set Kodi View slideshow images in a random order to {1}
  • Set Kodi Share video and music libraries through UPnP to {1}
  • Set Kodi Announce library updates via UPnP to {1}
  • Set Kodi Look for remote UPnP players to {1}
  • Set Kodi Allow control of XBMC via UPnP to {1}
  • Set Kodi Allow programs on this system to control XBMC to {1}
  • Set Kodi Allow programs on other systems to control XBMC to {1}
  • Set Kodi Announce these services to other systems via Zeroconf to {1}
  • Set Kodi Allow XBMC to receive AirPlay content to {1}
  • Set Kodi AirPlay Allow volume control to {1}
  • Set Kodi AirPlay Use password protection to {1}
  • Set Kodi Blank other displays to {1}
  • Set Kodi Use a fullscreen window rather then true fullscreen to {1}
  • Set Kodi start window*
  • Set Kodi Debugging to {1}
  • Generate Skin Payload
  • Set Kodi skin (run "Generate Skin Payload" first)


* = Commands that have payload xmls that need to be downloaded as well and placed in your XbmcPayloads folder
« Last Edit: February 08, 2016, 01:27:42 AM by PegLegTV »

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7713
  • Karma: 116
    • View Profile
    • VoxCommando
Re: XBMC/KODI settings commands
« Reply #1 on: May 07, 2015, 08:29:17 AM »
Sweet.  Thanks Pegleg TV.   :clap

Do you know if there is a setting for true fullscreen? My Kodi periodically sets itself to fake fullscreen which destroys my video playback and it's extremely annoying having to navigate the menus to fix it!

PegLegTV

  • $upporter
  • Sr. Member
  • *****
  • Posts: 499
  • Karma: 43
    • View Profile
Re: XBMC/KODI settings commands
« Reply #2 on: May 07, 2015, 11:00:57 AM »
That was a hard one to figure out   ::hmm, there is no documentation on how to toggle "use a fullscreen window rather then a true fullscreen" anywhere, I had to dig through my guisettings.xml to find the correct action name for this one,

Set Kodi Use a fullscreen window rather then true fullscreen to {1}
Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.4.5-->
<command id="1057" name="Set Kodi Use a fullscreen window rather then true fullscreen to {1}" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>XJson.Raw</cmdType>
    <params>
      <param>Settings.SetSettingValue</param>
      <param>"setting":"videoscreen.fakefullscreen", "value":{1}</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <phrase>Set Kodi Use a fullscreen window rather then true fullscreen to</phrase>
  <payloadList>true, false</payloadList>
</command>



I will also add this to the group in the first post

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7713
  • Karma: 116
    • View Profile
    • VoxCommando
Re: XBMC/KODI settings commands
« Reply #3 on: May 07, 2015, 11:29:24 AM »
Lovely.  Much obliged! :D