![]() |
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: XBMC Video Server: stream/download your library contents - bertybassett - 2014-08-25 will try that later RE: XBMC Video Server: stream/download your library contents - wjbeckett - 2014-08-26 Hey Negge, Any reason why the Reverse proxy would be terminating downloads? I'm running vanilla Ubuntu Server now rather than on an xampp stack. Reverse proxy works, however the downloads/streams terminate early. RE: XBMC Video Server: stream/download your library contents - negge - 2014-08-26 Some other guy had the same problem, I have to say I don't know why. I've never experienced that myself, though I have a feeling it's a bug in XBMC on some platforms or something. Can you describe your setup a bit? RE: XBMC Video Server: stream/download your library contents - wjbeckett - 2014-08-26 Sure, Main Machine - XBMC Gotham running on Windows 8.1 with Hyper-V Ubuntu Server 14.04 VM running on the Windows box with SickBeard, CouchPotato and XBMC-Video-Server. xbmc-video-server is running on port 80, all other web apps are running on 808x so there is nothing on the same port. ApachevHost file: <VirtualHost *:80> ServerName stream.xxxxxx.com ServerAdmin webmaster@localhost DocumentRoot /var/www/html/xbmc-video-server ErrorLog ${APACHE_LOG_DIR}/stream.error.log CustomLog ${APACHE_LOG_DIR}/stream.access.log combined <Directory /var/www/html/xbmc-video-server/> Options FollowSymLinks AllowOverride All Require all granted </Directory> AllowEncodedSlashes On <Location /xbmc-vfs> ProxyPass http://172.30.1.3:8000/vfs ProxyPassReverse http://172.30.1.3:8000/vfs RequestHeader set Authorization "Basic eGJtYzp4Ym1j" </Location> </VirtualHost> Browsing to 172.30.1.3:8000/vfs displays a blank page ( as it should). So I know the reverse proxy is working. However it seems to be stopping the download about 5-6 seconds into it. RE: XBMC Video Server: stream/download your library contents - negge - 2014-08-26 Can you pastebin the Apache access and error logs plus an XBMC debug log when the disconnect happens? RE: XBMC Video Server: stream/download your library contents - wjbeckett - 2014-08-26 (2014-08-26, 09:37)negge Wrote: Can you pastebin the Apache access and error logs plus an XBMC debug log when the disconnect happens? Here's the Access log http://pastebin.com/sZnGzj1F Here's the XBMC log http://pastebin.com/456w7zK2 There's nothing in the error log. Thanks for you help! RE: XBMC Video Server: stream/download your library contents - negge - 2014-08-26 Can you provide a debug log (wiki), the one you posted is a normal one. RE: XBMC Video Server: stream/download your library contents - wjbeckett - 2014-08-27 (2014-08-26, 16:16)negge Wrote: Can you provide a debug log (wiki), the one you posted is a normal one. Oops. Here you go! http://pastebin.com/456w7zK2 and updated apache.access.log http://pastebin.com/sZnGzj1F RE: XBMC Video Server: stream/download your library contents - negge - 2014-08-27 Can you successfully download the file if you disable the proxy? RE: XBMC Video Server: stream/download your library contents - wjbeckett - 2014-08-27 (2014-08-27, 12:24)negge Wrote: Can you successfully download the file if you disable the proxy? Yeah, If the proxy is off its totally fine. Which is what led me to believe that it was the proxy causing this issue in the first place. When I was running this on a xampp stack in Windows I managed to get it working by adding the proxy details to the ghost file and not the httpd-proxy.conf file. But obviously Ubuntu is completely different. So I'm at a bit of a loss here. If its any more helpful, I can give you login and ssh access to my setup so you can play is you like? RE: XBMC Video Server: stream/download your library contents - negge - 2014-09-05 CHANGELOG.md Wrote:#### 1.6.6 RE: XBMC Video Server: stream/download your library contents - negge - 2014-09-06 CHANGELOG.md Wrote:#### 1.6.7 RE: XBMC Video Server: stream/download your library contents - maxivane - 2014-09-06 Hello friends .. this xbmc video server I am not able to watch the movie using browser click to watch it downloads in m3u, How do I watch in chrome without downloading? RE: XBMC Video Server: stream/download your library contents - negge - 2014-09-07 You can't watch the movie in your browser, you'll have to open the playlist file in VLC or some other media player. As a note to everyone, there's a pretty serious performance regression in the last two versions that affects the Movies -> Browse page. I'm looking into the best way of solving it. RE: XBMC Video Server: stream/download your library contents - paavoris - 2014-09-08 One really small "bug": in https://github.com/Jalle19/xbmc-video-server/blob/master/src/css/styles-min.css (and login-min.css too) - line 1 Code: @import url("http://fonts.googleapis.com/css?family=Lato:400,700,900,400italic");/*! Could you drop that http protocol and change that line to: Code: @import url("//fonts.googleapis.com/css?family=Lato:400,700,900,400italic");/*! This will only clean up some "browser bitching". If XBMC Video Server is accessed via "https", browsers it should load those fonts via https too. That small change should't affect anything else. |