Kodi Community Forum
[Web Interface Addon] [Eden] XWMM - XBMC Web Media Manager - 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)
+---- Thread: [Web Interface Addon] [Eden] XWMM - XBMC Web Media Manager (/showthread.php?tid=60643)



- cheat2win - 2010-12-22

slash Wrote:XWMM is platform independant, so it works on linux, Mac OS and windows.

to find your IP address on win 7 :

- go to start -> type cmd in the search field then enter
- you should have a command prompt windows - type ipconfig

If you want to test XWMM from the same computer you are running XBMC:

- open a browser (on the same computer) and replace myip with 127.0.0.1

let us know how it goes

/

Still can't make it work. Firefox says it can't connect to the server at <ip>. Tried once again with my IP and with the one you provided.

Here's my debug log:
Code:
http://pastebin.com/5NmnB9Zq



- slash - 2010-12-22

cheat2win Wrote:Still can't make it work. Firefox says it can't connect to the server at <ip>. Tried once again with my IP and with the one you provided.

Hi again,

from the same computer try in firefox:

http://127.0.0.1
and
http://127.0.0.1/XWMM/index.html

Let us know
/


- jerndl - 2010-12-22

slash Wrote:Hi
- what browser are you using ? XBMC version ?
- do yousee any errors in the xbmc.log (enable debug) ?

/
I was using IE version 8 on Windows 7. I tried Firefox and I can now see the file browser page. IE still presents a blank page. Now that I can see the file browser I am still having some difficulty. I'm using ripped DVDs with VIDEO_TS folders. I'm not sure how the scraping in the file browser is supposed to work using this structure. Also I have some movies where there is no cast info. How can I re-scrape one movie at a time to fix the cast. Thanks.

Jay


- cheat2win - 2010-12-22

slash Wrote:Hi again,

from the same computer try in firefox:

http://127.0.0.1
and
http://127.0.0.1/XWMM/index.html

Let us know
/

Still nothing. Firefox says it can't establish a connection to the server at 127.0.0.1.


- blastyblast - 2010-12-22

Hi Slash, I have a request: not sure how you're handling search requests, I'm guessing jquery/ajax (sorry for not checking in advance, but the spirit of my request won't be affected either way...), but could you implement a delay to search requests? Currently, XWMM tries to search immediately after I start typing a letter, which ultimately slows down search results for me. I have more than 2,500 HD movies, 3,000 TV shows etc. on a 30 terabyte network. So I might be on the extreme side, but I think this enhancement would benefit users in general.

Maybe by setting a timer on the keyup event or something...? I *think* it would look something like this:

-------

$('#search_keywords').keyup(function() {
clearTimeout($.data(this, 'timer'));
$(this).data('timer', setTimeout($.proxy(search, this), 500));
});
function search() {
if (this.value.length >= 2 || this.value == '') {
$('#loader').show();
$('#jobs').load(
$(this).parents('form').attr('action'),
{ query: this.value + '*' },
function() { $('#loader').hide(); }
);
}
}

--------

This effectively breaks your search into another function, and just delays 500ms between hitting a key and firing the search function. If you type another letter, the 500ms timer resets with the clearInterval(), so quick typing won't trigger 20 events, only once you pause a half second will it fire. You could even make it 600 or 700 ms if you want. The $.proxy() part is so that this is correct when the setTimeout() executes.

Last, I also wanted to say that XWMM is fantastic! I've wanted something like this since the early days of XBMC when I had to hard hack my xbox to install the software. Great work. Please continue!


- slash - 2010-12-23

cheat2win Wrote:Still nothing. Firefox says it can't establish a connection to the server at 127.0.0.1.

Hmmm.

Could you go into xbmc - system - system info and grap the IP address and post it here.

Then without closing xbmc try accessing that ip address with firefox (http://theipaddress).

/


- slash - 2010-12-23

blastyblast Wrote:Hi Slash, I have a request: could you implement a delay to search requests? Currently, XWMM tries to search immediately after I start typing a letter, which ultimately slows down search results for me. I have more than 2,500 HD movies, 3,000 TV shows etc. on a 30 terabyte network. So I might be on the extreme side, but I think this enhancement would benefit users in general.

Maybe by setting a timer on the keyup event or something...? I *think* it would look something like this:

That is a good point I'll look into. Sorry but it might take time ... I'm a little behind in bug fixes and feature requests


blastyblast Wrote:Last, I also wanted to say that XWMM is fantastic! I've wanted something like this since the early days of XBMC when I had to hard hack my xbox to install the software. Great work. Please continue!
[/quote]

Glad to hear that. Thanks
cheers

/


- cheat2win - 2010-12-23

slash Wrote:Hmmm.

Could you go into xbmc - system - system info and grap the IP address and post it here.

Then without closing xbmc try accessing that ip address with firefox (http://theipaddress).

/


Already done that. Still the same results.

Oh well, it seems I'll stick with XBNE.


Feature Request - tyers - 2010-12-23

Hi Slash,

I really like the ability to export a list of movies to HTML - It's very useful for letting other people see what I have in my collection.

Would it be possible to add a similar function for TV shows? Possibly with a layout that roughly matches the TV show view in the web interface? i.e.:

TV Show 1
- Season 1
[INDENT]- X Episodes
[/INDENT]
- Season 2
[INDENT]- Y Episodes
[/INDENT]
TV Show 2
- Season 1
[INDENT]- Z Episodes
[/INDENT]
etc. etc.

Keep up the good work. I am still loving the interface.

Cheers


- slash - 2010-12-24

tyersch Wrote:Hi Slash,

I really like the ability to export a list of movies to HTML - It's very useful for letting other people see what I have in my collection.

Would it be possible to add a similar function for TV shows? Possibly with a layout that roughly matches the TV show view in the web interface?

Keep up the good work. I am still loving the interface.

Cheers

Good idea. Added to feature requests.

Thanks
/


Actor Images - Dobyken - 2010-12-24

Are the actor images supposed to be displayed 1.9.3? All mine seem to be blank. I was looking for a way to add in missing actor thumbs by entering a url or path but don't see that feature enabled yet. Is it something we'll see in the near future? What I see so far is great and I'm glad we have a cross-platform solution.


- slash - 2010-12-25

Dobyken Wrote:Are the actor images supposed to be displayed 1.9.3? All mine seem to be blank. I was looking for a way to add in missing actor thumbs by entering a url or path but don't see that feature enabled yet. Is it something we'll see in the near future? What I see so far is great and I'm glad we have a cross-platform solution.

Yes, you should see the actor images but it might be a bug with XBMC 10.0.

I'll check that. Also I didn't finish the upload feature.

Thanks
/


- ralob - 2010-12-26

Chrome Dev 10 on Linux shows a blank screen. Works fine in FF 3.6.


Can't edit in xvmm - Ekamhi - 2010-12-26

HI

I have recently started using XVMM and I find the concept great.
I started by using it to create movie set's. while Im able to create the set I can't mange to add the the sort title, nor am i able to do any input or editing of data. no add trailer URLs, or edit anything. this is true also in the music and the TV section.

what did I miss??

I use win7 on asrock ION 330HT, I have tried FF/explorer/chrome

thanks for the help


- slash - 2010-12-27

ralob Wrote:Chrome Dev 10 on Linux shows a blank screen. Works fine in FF 3.6.

Noted. I'll check if Chrome supports extjs framework.
thanks
/