Posts by vitorp07

    Created a custom movies node for testing and it's working.
    The movies nodes should go to userdata/library/video/movies.

    Here is an node example for "votes"

    XML
    <?xml version='1.0' encoding='UTF-8'?>
    <node type="filter" visible="Library.HasContent(Movies)">
        <label>Votes</label>
        <content>movies</content>
        <order direction="descending">votes</order>
        <limit>100</limit>
    </node>


    here one for "ratings"

    XML
    <?xml version='1.0' encoding='UTF-8'?>
    <node type="filter" visible="Library.HasContent(Movies)">
        <label>Ratings</label>
        <content>movies</content>
        <order direction="descending">rating</order>
    </node>


    It will probably also work if you delete {visible="Library.HasContent(Movies)"}.
    Reboot after creating your nodes

    I don't want to sound like an a$$ here, but maybe the best and easiest solution would be to choose another "skin".
    One that is compatible with Kodi 17(Krypton) if you are using that.

    And AFAIK you can't install LibreELEC on the Firestick, which is why i asked if you tried LibreELEC before posting your thread.
    So if the problem/bug is Kodi related it would have been better to post your thread in the Kodi forum to help Kodi users.


    This won't work with LibreELEC 8.0.0 because of the changes to Kodi krypton.
    These tags above are no longer in <network>, info here.

    Also you don't need to put "spaces" before and after the tags.
    e.g.: <memorysize>0</memorysize>

    Based on what you posted above you should have this in your advancedsettings.xml file in Kodi krypton

    XML
    <?xml version="1.0" encoding="UTF-8"?>
    <advancedsettings>
        <cache>
            <buffermode>1</buffermode>
            <memorysize>104857600</memorysize>
            <readfactor>3.0</readfactor>
        </cache>
    </advancedsettings>


    I would put a higher value than "3.0" for the <readfactor>, "8.0" or even "12.0" should be fine, default is "4.0".

    Honestly, I am not sure if I posted in the wrong place or not. I will take a look and investigate the appropriate forum. Thank you.


    Did you tried LibreELEC before posting this?
    Why would you want to add "exit" option to the button/shutdown menu, this is not Windows or Ubuntu.

    If you need to restart Kodi without rebooting LibreELEC use the following command instead;

    Code
    systemctl restart kodi

    You shouldn't have to change permissions for the autostart.sh file, if the commands you put in the file are correct then reboot and see if it's working.
    But you should test the commands via ssh first to see if they are taking effect before putting them in autostart.sh.

    To make it executable, after autostart.sh was created, you can try this via ssh;

    Code
    chmod +x /storage/.config/autostart.sh

    What are you putting in autostart.sh?

    No, just add it at the end of the samba.conf file like this example below;

    In Kodi settings;
    Media settings->General: enable "show hidden files and directories"
    Then in Windows or whichever OS your are accessing LibreELEC from, enable "show hidden files, folders and drives"

    In your "samba.conf" file add "Root" access at the end like so;

    Code
    [Root]
      path = /
      available = yes
      browsable = yes
      public = yes
      writable = yes

    Now using Samba you should be able to view all the folders, including the Storage folder, through the Root folder when accessing it in File Explorer.


    The latest one works! I am a happy camper. Can you modify some of the others so that they work also.

    Thanks for your help on this.

    Great, sometimes it's hard to figure out exactly what to fix when you do not own the hardware.

    Which other ones are you interested in, Shadertoy and Waveform?

    SSH again and send these commands below. (to output to HDMI1 1080p with laptop's screen disabled)

    Code
    echo "#!/bin/sh" > /storage/.config/autostart.sh


    Code
    echo "xrandr --output eDP1 --off && xrandr --output HDMI1 --mode 1920x1080 --rate 60.00" >> /storage/.config/autostart.sh

    To revert back to original if needed, it's the command below.

    Code
    rm /storage/.config/autostart.sh


    or simply delete the "autostart.sh" file created

    In this thread, will make it easier and you have a better chance of someone with the same hardware helping you in the Amlogic section.
    [hr]
    Does it install in your system?
    The error is still the same? (Can't Load Shared Library)

    Here is another one for you to try.

    EDIT: confirmed working on Odroid U3
    spectrum-Odroid