Release Chorus - A Web UI - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Web Interfaces (https://forum.kodi.tv/forumdisplay.php?fid=156) +----- Forum: Chorus (https://forum.kodi.tv/forumdisplay.php?fid=269) +----- Thread: Release Chorus - A Web UI (/showthread.php?tid=183451) |
RE: Chorus - A Web UI - jez500 - 2014-04-24 (2014-04-23, 17:06)krakout Wrote: I had to install Chorus manually from the zip archive, however it seems OpenELEC decided it's good enough to update. So maybe indeed the bug got fixed in 0.3.6 I'm going to have to give OpenELEC a go sometime soon, it does sound awesome. Was there problems installing it from the repo first time round? RE: Chorus - A Web UI - jez500 - 2014-04-24 (2014-04-24, 00:20)robpsmith Wrote: Firstly would also like to echo awesome work. Glad you like! And yep that is definitely a bug, will be sorted in the next release (just a couple of lines of css should do the trick) RE: Chorus - A Web UI - krakout - 2014-04-24 OpenELEC for the Pi is a must if you just want a media player without fussing with it (my girl wouldn't appreciate it if, say, we wanted to watch a movie and I was like "oh, let me compile this... and git-clone that..."). Indeed a great piece of software. When I first tried to install it it was, I think, marked as "incompatible" (I'm running the beta OpenELEC that uses the Gotham beta, so this is a common occurrence). I don't know if it's still marked as incompatible; if it is, it means that OpenELEC doesn't fuss about updating incompatible plugins that are already manually installed. RE: Chorus - A Web UI - jez500 - 2014-04-24 Yeah I thought it would be good to bring some old hardware back to life with next to no hassle and the only app that matters running on it. Ahh ok, the only dependency it has is v6 of the jsonrpc which exists in both frodo and gotham, maybe there was something else, although I did test gotham out the other week and chorus was actually listed as the only compatible web interface. Might have a play with OpenELEC this weekend just to check RE: Chorus - A Web UI - Mizaki - 2014-04-25 Seems it's a bug with recently added episodes. Code: Line: 21676 data.result.episodes[i].thumbnail = show.thumbnail; This is with Gotham mind. One of the mentions of cast etc. being slow. RE: Chorus - A Web UI - jez500 - 2014-04-27 (2014-04-25, 23:06)Mizaki Wrote: Seems it's a bug with recently added episodes. I couldn't reproduce it but could see how it could break. Should be fixed in 0.3.7, changed to Code: data.result.episodes[i].thumbnail = (show !== undefined ? show.thumbnail : ''); RE: Chorus - A Web UI - Mizaki - 2014-04-28 Still takes 32 secs to load though. I see what you are doing now. Must have been blind before Why are you getting every single TVShow for Recently added episodes btw? I guess to cross reference and get the TV show poster? I personally don't think that's very helpful as every other interface (I think) shows the episode thumb. You aren't using a limited load with TV Shows (for the previous reason?). I see with Movies it loads 60 then on scroll, 60 more. TVShows are set to a static 10000. Todo? I only have 253 TV Shows and a half decent PC so someone on a Pi will have a nightmare currently. What do you use to edit btw? RE: Chorus - A Web UI - asiaminor - 2014-04-28 I have been using this web interface from my pc to control raspberry pi using openelec. 3 days ago I have noticed that the arrow keys and enter key on my keyboard is also working. Thank you for this, because I prefer keyboard controls instead of mouse. But I can not play or pause by keyboard. Is there a way to add hotkeys to interface like arrow keys. Thank you. RE: Chorus - A Web UI - krakout - 2014-04-28 Darn, OpenELEC didn't auto-update to 0.3.7... I had to do it manually. Oh well! RE: Chorus - A Web UI - michaelkrtikos - 2014-04-28 Once again this is an outstanding web interface. I have been reading all the posts on this thread but it seems that for me the stream does not work. I run XBMC on a raspberry pi model B and loading the interface from my PC on chrome. The music seems to play in browser but i cannot hear anything. I have tried this also locally using the local IP and port and also via internet using the external IP and port. The same is happening when i use it from my iPad or iPhone. I am not sure if i am doing something wrong or i miss any plugin in order to work. please let me know how you have managed this to work! Thank you in advance! RE: Chorus - A Web UI - jez500 - 2014-04-29 (2014-04-28, 01:32)Mizaki Wrote: Still takes 32 secs to load though. I see what you are doing now. Must have been blind before Why are you getting every single TVShow for Recently added episodes btw? I guess to cross reference and get the TV show poster? I personally don't think that's very helpful as every other interface (I think) shows the episode thumb. You aren't using a limited load with TV Shows (for the previous reason?). I see with Movies it loads 60 then on scroll, 60 more. TVShows are set to a static 10000. Todo? There is a number of reasons I get every show, mainly as a search index but also for things like this and the "next" button on an episode. They do get cached so it should only be one wait per page load although I will look into how well this is working, I might also try and lighten up the query by removing fields we don't use. Movies took a lot of work getting to paginate + infinite scroll and TBH I couldn't really be bothered doing the same with tv. But it sounds like it is required, added to the todo list... I use phpstorm as my IDE, awesome app! If you need any help getting your dev environment setup, let me know RE: Chorus - A Web UI - jez500 - 2014-04-29 (2014-04-28, 18:39)asiaminor Wrote: I have been using this web interface from my pc to control raspberry pi using openelec. 3 days ago I have noticed that the arrow keys and enter key on my keyboard is also working. Thank you for this, because I prefer keyboard controls instead of mouse. But I can not play or pause by keyboard. Is there a way to add hotkeys to interface like arrow keys. I'll add the spacebar (play/pause) to the keyboard commands for you RE: Chorus - A Web UI - jez500 - 2014-04-29 (2014-04-28, 18:47)krakout Wrote: Darn, OpenELEC didn't auto-update to 0.3.7... I had to do it manually. Oh well! I normally let it stew on github for a few days before adding it to the repo, just in case I (or someone else) discovers a bug. RE: Chorus - A Web UI - jez500 - 2014-04-29 (2014-04-28, 20:42)michaelkrtikos Wrote: Once again this is an outstanding web interface. Possibly the file format? streaming only really works with mp3s RE: Chorus - A Web UI - krakout - 2014-04-29 (2014-04-29, 05:16)jez500 Wrote:(2014-04-28, 18:47)krakout Wrote: Darn, OpenELEC didn't auto-update to 0.3.7... I had to do it manually. Oh well! Ahhh thanks By the way; I updated manually, the system shows 0.3.7 but the web interface shows 0.3.6. |