![]() |
|
[Web Interface Addon] AWX - Ajax based Web Interface Addon for XBMC - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Web Interfaces (/forumdisplay.php?fid=156) +---- Thread: [Web Interface Addon] AWX - Ajax based Web Interface Addon for XBMC (/showthread.php?tid=81775) |
- MKay - 2010-11-03 20:25 Then it will reboot your pc and automatically format all your hdd's ![]() If other image formats are needed: just make a feature request
- UndisclosedP - 2010-11-03 21:19 Aha, thanks Mkay, Somehow one show had managed to get itself a vertical thumb instead of a wide thumb, it also happened to be the first show in my library so I guess thats why AWX picked it. Cleaned that up and its now all ok! Love the interface. - ppic - 2010-11-03 21:29 well landscape image are massively used but i don't want to overload you
- MKay - 2010-11-03 21:34 Do you have an example image? - ppic - 2010-11-03 23:00 yes find it on http://www.xbmcstuff.com apart: i've tested with timeout = 60 still can't load movie or tvshow list, still have a "failed to retrieve" error - MKay - 2010-11-03 23:17 If you have a linux running try this on a console and check if it returns your tvshow list and check how long it would take: Code: curl -u 'username:password -i -X POST -d '{"jsonrpc": "2.0", "method": "VideoLibrary.GetTVShows", "params": { "start": 0, "fields": ["genre", "director", "plot", "title", "originaltitle", "runtime", "year", "rating"] }, "id": 1}' http://your_xbmc_host/jsonrpc- ppic - 2010-11-03 23:35 just giving me this: > - MKay - 2010-11-04 00:13 What's this? A prompt waiting for user-input?Try to redirect the output of the program into file (by adding ">> filename" to the command above) Does the file contain any useful data (tvshow list)?
- ppic - 2010-11-04 00:44 don't work, i still get a prompt. Code: xbmc@media:~$ curl -u 'xbmc:xbmc -i -X POST -d '{"jsonrpc": "2.0", "method": "VideoLibrary.GetTVShows", "params": { "start": 0, "fields": ["genre", "director", "plot", "title", "originaltitle", "runtime", "year", "rating"] }, "id": 1}' http://192.168.0.8/jsonrpc >> test.txt- thazzy - 2010-11-04 10:29 ppic Wrote:don't work, i still get a prompt. Some characters needs to be escaped. Should be something like Code: curl -u "xbmc:xbmc -i -X POST -d \'\{\"jsonrpc\": \"2.0\", \"method\": \"VideoLibrary.GetTVShows\", \"params\": \{ \"start\": 0, \"fields\": \[\"genre\", \"director\", \"plot\", \"title\", \"originaltitle\", \"runtime\", \"year\", \"rating\"\] \}, \"id\": 1\}" http://127.0.0.1:8080/jsonrpc |