Win Custom Video Node
#1
I've installed the latest nightly (XBMCSetup-20121103-52df23a-master.exe).

It should support "Custom video nodes". I've setup movies/titles.xml as follows:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="2" type="folder">
<label>369</label>
<path>videodb://1/2</path>
<content>movies</content>
<icon>DefaultMovieTitle.png</icon>
<match>all</match>
<rule field="path" operator="doesnotcontain">E:\Documentaries</rule>
<rule field="path" operator="doesnotcontain">E:\Stand-up</rule>
</node>

Movies from the "E:\Documentaries" folder or "E:\Stand-up" folder are not excluded from when viewing movies from the home-menu or when browsing Videos/Titles. Am I missing something?
Reply
#2
Movies/titles.xml is used in the unflattened listing. You're possibly looking at the flattened listing.

Further, the home page links point to a different path, thus you'll need to update those to point to your library nodes instead.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#3
Not sure how to toggle between flattend and unflattened listing. Could you help me out.

"the home page links point to a different path" which path?
Reply
#4
It's on the left in Confluence video library views.

The home page links point to videodb:// paths rather than library://video/<your_node> paths.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#5
I've solved the issue for titles.xml. In my original XML:

<node order="2" type="folder">

I've changed it to:

<node order="2" type="filter">

Now it work for the title submenu. I'm still not sure how to get the same result directly from the home menu. I would assume the home-menu "Movies" item points to movies\index.xml. I've tried to edit this XML and added the rules:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="1" visible="Library.HasContent(Movies)" type="filter">
<!-- a virtual folder -->
<label>342</label>
<icon>DefaultMovies.png</icon>
<match>all</match>
<rule field="path" operator="doesnotcontain">E:\Documentaries</rule>
<rule field="path" operator="doesnotcontain">E:\Stand-up</rule>
</node>

OR

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="1" visible="Library.HasContent(Movies)" type="filter">
<!-- a virtual folder -->
<label>342</label>
<icon>DefaultMovies.png</icon>
<path>videodb://1/2</path>
<content>movies</content>
<match>all</match>
<rule field="path" operator="doesnotcontain">E:\Documentaries</rule>
<rule field="path" operator="doesnotcontain">E:\Stand-up</rule>
</node>

This does not produce the expected result. Could anyone give me some pointers?


Reply
#6
No, it doesn't use index.xml. Index.xml is the overview node.

You need to edit the skin to point to the new paths as per my previous post. Find the ActivateWindow(Videos, MovieTitles) for example and change to ActivateWindow(Videos, library://video/movies/titles)
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply

Logout Mark Read Team Forum Stats Members Help
Custom Video Node0