Custom Menu on Confluence using Sources.xml
#1
Hello All,

I was able to get a custom menu to show up using a internal library of material I own.
The menu now shows TV Shows and Movies for CD's and DVD box sets that I have purchased.

I would also like to show other categories such as a YouTube channel (to maybe Khan Academy) or even a Kids Section.

My sources.xml file is as follows:

Code:
<sources>

    <programs>
        <default pathversion="1"></default>
    </programs>
    
    <video>
        <default pathversion="1"></default>
        
        <source>
            <name>Movies</name>
            <path pathversion="1">/sdcard/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/Movies/</path>
            <allowsharing>true</allowsharing>
        </source>
        
        <source>
            <name>TVShows</name>
            <path pathversion="1">/sdcard/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/TVShows/</path>
            <allowsharing>true</allowsharing>
        </source>    
        
        
        <source>
            <name>CustomClips</name>
            <path pathversion="1">http://CustomWebPage.com/orEvenYouTube</path>
            <allowsharing>true</allowsharing>
        </source>
        
    </video>
    
    
    <TestMenu>
        <default pathversion="1"></default>
    </TestMenu>
    
    
    <music>
        <default pathversion="1"></default>
    </music>
    
    <pictures>
        <default pathversion="1"></default>
    </pictures>
    
    <files>
        <default pathversion="1"></default>
    </files>
    
</sources>

I tried both adding a <source> in the Videos section named "CustomClips" as well as adding a new tag <TestMenu> to the file. After pushing this file to the device I do not see any additions to the menu.

I was under the impression I could link to a YouTube page by adding the source and the URL. This wasn't the case.

Any advice?
Reply

Logout Mark Read Team Forum Stats Members Help
Custom Menu on Confluence using Sources.xml0