Kodi Community Forum
command line way of updating library? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52)
+---- Thread: command line way of updating library? (/showthread.php?tid=38616)



command line way of updating library? - mudboy - 2008-10-08

I have a bunch of scripts that do file downloading, renaming, transcoding, etc for me and I'd love a method of including a line at the end that can trigger a "Update Library" function in XBMC.

I'm running both my scripts and xbmc on linux (although different machines), but i can call a remote command via ssh without a problem in a script.

at the very least its something i can run in cron. Sure, hitting update library is easy, but the wife is constantly complaining when she can't see that a show/movie that she knows we have isn't "there".

Thanks,
mudboy


- malloc - 2008-10-09

there's an ftp command on the xbox that can do this. ftp isn't supported on linux, but perhaps there's an equivalent http command or pyhton command. in the case of python you could use http to run the python script within xbmc.


- Vaslav - 2008-10-10

I'd like to second this request. A signal handler would be really convenient!


- d4rk - 2008-10-10

You should be able to do a "ExecBuiltIn(function)" with "XBMC.updatelibrary(database)" as the function (with HTTP API). Check out these 2 links:

http://wiki.xbmc.org/?title=WebServerHTTP-API#Action_commands
http://wiki.xbmc.org/?title=List_of_Built_In_Functions


- jking2100 - 2008-10-10

Thanks for directing to the proper location I thought I had read about the built-in command but must have skimmed over that second link.

JKing


- Vaslav - 2008-10-10

Thanks!

For reference, this works great in scripts:

Code:
curl 'http://xbmc:8080/xbmcCmds/xbmcHttp?command=ExecBuiltIn&parameter=XBMC.updatelibrary(video)'



- Bommy - 2010-10-03

Oops, wrong forum.