![]() |
XBMC Video Server: stream/download your library contents - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: XBMC Video Server: stream/download your library contents (/showthread.php?tid=168296) |
RE: [BETA] XBMC Video Server: stream/download your library contents - bzellinger - 2013-07-23 Updated: everything works great. Thanks for everything! RE: [BETA] XBMC Video Server: stream/download your library contents - nelsonamen - 2013-07-23 can this be installed on freenas as a plugin? RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-07-23 (2013-07-23, 11:44)nelsonamen Wrote: can this be installed on freenas as a plugin? I don't see why not, although you'd have to set up the jail and install the whole thing yourself. RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-07-24 @caspkb: I've done an initial round of profiling and fixed all the biggest bottlenecks in the code. The Movie -> Browse page is still quite taxing due to the sheer amount of HTML that has to be generated. Implementing pagination (let's say 50 items per page) would speed things up significantly. Another bottleneck was the API calls which are now cachable. On the movie filter page the process of JavaScript-encoding the movie names for the typeahead filter field still takes some time, I just haven't gotten around to caching that yet. I've added some runtime caching for retrieving setting values since that can be done even a hundred times per page load and it's unnecessary to load the values directly from the database all the time. All in all the call stack size has decreased by over 50% since I ran a profiler for the first time, so I believe the whole thing should work way better on slow hardware at the moment even though there are still areas that could be improved. I've also looked into using a different library for resizing images (in purpose of finding the fastest one) but I'll have to do some speed comparisons first. RE: [BETA] XBMC Video Server: stream/download your library contents - hewligun - 2013-07-26 Has anyone been able to get this installed on windows? RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-07-28 (2013-07-26, 22:21)hewligun Wrote: Has anyone been able to get this installed on windows? There's a complete guide in the README. Do you have a specific problem with it? RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-07-30 Couple of updates:
As usual, grab the latest updates by firing off these commands in your working directory: Code: git pull Coming up will be some improvements to the installation steps for Linux (chmoding of files will be done using a single command instead of the current five). Also, if you find any bugs or have a feature request, please use the Github issues page at https://github.com/Jalle19/xbmc-video-server/issues?state=open! RE: [BETA] XBMC Video Server: stream/download your library contents - tesona1977 - 2013-07-30 @negge is it possible to encrypt the connection using ssl? login and streaming? RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-07-30 (2013-07-30, 23:24)tesona1977 Wrote: @negge Of course, see one of the many guides on how to setup Apache with SSL. The streaming itself will only happen over SSL if a proxy location is configured for the backend since XBMC doesn't support SSL for its web interface AFAICT. RE: [BETA] XBMC Video Server: stream/download your library contents - Livin - 2013-08-01 Would be great to see this extended to include a "Music Jukebox". RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-08-01 (2013-08-01, 03:28)Livin Wrote: Would be great to see this extended to include a "Music Jukebox". Like I mentioned earlier, music streaming is a very low priority right now since a) I don't use the music library and b) there are tons of music streaming solutions out there already. RE: [BETA] XBMC Video Server: stream/download your library contents - cableghost - 2013-08-05 Thanks for putting this together, however, I cannot gain access to my library. I have successfully completed the install (Windows), though when attempting to view the library, I receive an Error 500 message. I have enabled Webserver and remote control under 'Services' and set 'Internet Access' settings under 'System' in my instance of XBMC. My Internet access port is the same as that specified in the XBMC video server backend. What am I missing, or not correctly setting? -Scott RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-08-05 What is the exact error message? Could you also pastebin the contents of src/protected/runtime/application.log and paste the link here? RE: [BETA] XBMC Video Server: stream/download your library contents - cableghost - 2013-08-05 (2013-08-05, 20:30)negge Wrote: What is the exact error message? Could you also pastebin the contents of src/protected/runtime/application.log and paste the link here?Exact message: Error 500: Unable to connect to XBMC922:58050 . Error #0: stream_socket_client(): unable to connect to XBMC922:58050 (php_network_getaddresses: getaddrinfo failed: No such host is known. ) App log: http://pastebin.com/6ub2s74L RE: [BETA] XBMC Video Server: stream/download your library contents - negge - 2013-08-06 It means it can't find the hostname "XBMC922". Try using the IP address of your XBMC box instead. |