Vielleicht hat irgendwer eine Idee wie ich das Exportieren mit Windows und curl hinbekomme, die Syntax macht mir etwas zum schaffen.
Clean und Update funktioniert so:
Code
curl.exe -i -X POST -d "{\"jsonrpc\": \"2.0\", \"method\": \"VideoLibrary.Clean\", \"id\": \"mybash\"}" -H "content-type:application/json" http://kodi:@localhost:8080/jsonrpc
curl.exe -i -X POST -d "{\"jsonrpc\": \"2.0\", \"method\": \"VideoLibrary.Scan\", \"id\": \"mybash\"}" -H "content-type:application/json" http://kodi:@localhost:8080/jsonrpc
Für exportieren müsste ich irgendwie die Parameter reinbekommen:
Code
curl.exe -i -X POST -d "{\"jsonrpc\": \"2.0\", \"method\": \"VideoLibrary.Export\", \"id\": \"mybash\"}", ?????????????????? -H "Content-Type: application/json" http://kodi:@localhost:8080/jsonrpc
Das habe ich als denkansatz gefunden, nur wie bekomme ich es mit der korrekten Syntax oben rein?
{ "jsonrpc": "2.0", "method": "VideoLibrary.Export", "params": { "options": { "overwrite": false, "actorthumbs": false, "images": true} }, "id": 1 }
Vielleicht weis wer wie es korrekt funktioniert