Kodi Community Forum
Help with JSON comand - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93)
+---- Forum: JSON-RPC (https://forum.kodi.tv/forumdisplay.php?fid=174)
+---- Thread: Help with JSON comand (/showthread.php?tid=341827)



Help with JSON comand - desepticon - 2019-03-10

I want to be able to export my library to separate nfo files with overwrite, but only export the nfos. No images or actorthumbs. This is what I have so far

python:
curl -X POST -H 'content-type: application/json;' --data '{ "jsonrpc": "2.0", "method": "VideoLibrary.Export", "params": { "options": { "overwrite": true, "actorthumbs": false, "images": false} }, "id": 1 }' http://10.0.1.16:8083/jsonrpc

I don't think that's correct though, as it tried to export my artwork too. Anyone have any ideas?