Posts by vitorp07

    I tried first what @Irusak(Thanks) suggested and it worked perfectly when editing the "extlinux.conf" file, here is how i did;
    SSH and type

    Code
    mount -o remount,rw /flash


    then search for "extlinux.conf" in /flash and edit it to this( or if yours look different just add" setfbres=1080" at the end like mine respecting the space between the words);


    then back in SSH type;

    Code
    mount -o remount,ro /flash


    And Reboot

    Go to your BIOS/UEFI, disable Secure Boot and delete all security keys if installed.
    When you say latest LibreELEC generic is it 7.95.1 ?
    If so try this;
    After using the “LibreELEC USB-SD Creator” to prepare your USB stick, go back to File Explorer verify that the size of it is 511MB then right-click your USB stick and rename it manually to exactly this "LIBREELEC" without quotes(even if it's already named that) then right-click again select "Properties" and do the same there in the General tab.
    Try to install again.

    Try this in the same order;

    Code
    rm /storage/.config/autostart.sh


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


    Code
    echo "xrandr --output HDMI1 --mode 1920x1080 --rate 50.00" >> /storage/.config/autostart.sh


    You can change to "mode 1280x720" and "rate 60.00" as you want, just make sure to write it correctly with the spaces.
    The first command will delete the "autostart.sh" file that was previously created.
    I changed the output to "HDMI1" instead of "HDMI2" since the output of the last "xrandr" command you provided was connected to "HDMI1", you can change that if you need also.

    The file created is "autostart.sh" not ".conf".
    Doing the commands below should create that file automatically.

    Code
    echo "#!/bin/sh" > /storage/.config/autostart.sh
    
    
    echo "xrandr --output HDMI2 --mode 1920x1080 --rate 50.00" >> /storage/.config/autostart.sh

    I don't see "1280x720@50p" in the output you posted, can you copy the output of "xrandr".

    This should have done it.

    Code
    echo "xrandr --output DP3 --off && sleep 1 && xrandr --output HDMI2 --mode 1920x1080 --rate 60.00" >> /storage/.config/autostart.sh


    Can you verify in your "autostart.sh" file if the line you see there correspond to that one?
    You could have more than one line now or the one with"HDMI-2-0" would make it not work.

    This should work also.

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

    @ geonet2001
    When typing the password it won't show what you are typing.
    Make sure you are typing exactly this "libreelec" without quotes and all lowercase.
    Also make sure SSH is enabled in the LibreELEC settings and do not enable "Disable SSH Password".


    I have the same thing happening with the kodi splash (le splash is fine). It's definitely due to the tv not changing resolution quickly enough, but it's harmless since the kodi gui is fine

    Possible, but why would a native 1080p TV start in lower resolution then switch to 1080p?
    As far as i remember with all 1080p TV that i owned they always started in 1080p then switched to a lower resolution if asked by the device or software, even when i'm in the BIOS or UEFI my TV is still in 1080p.

    If you want you can bypass the Kodi splash by putting this "<splash>false</splash>" in advancedsettings.xml. You will just have a black screen between LibreELEC splash and the Kodi GUI.

    That also didn't fix it. There is nothing else connected to the PC and the only available output port is the single HDMI port.

    I had to change --output back to HDMI2 as I received the following error:

    # xrandr --output DP3 --off && sleep 1 && xrandr --output HDMI-2-0 --mode 1920x1080 --rate 60.00
    warning: output HDMI-2-0 not found; ignoring
    [hr]

    You are right about the "HDMI2" i overlooked that, but from the picture you have in your first post it looks exactly like "1024x768" displayed on a "1920x1080" screen without stretching. And "1024x768" is the max resolution displayed on your "DP3" output which says is connected also(could be passthrough)but we don't have this information.
    Can you confirm your tried this exactly in the same order?

    Code
    echo "#!/bin/sh" > /storage/.config/autostart.sh
    Code
    echo "xrandr --output DP3 --off && sleep 1 && xrandr --output HDMI2 --mode 1920x1080 --rate 60.00" >> /storage/.config/autostart.sh

    Tried and it didn't have any effect. The LibreELEC logo is still shrunken when the splash/boot screen is shown. It should be noted that the text that is displayed during bootup and shutdown appears to be normally sized on top of the splash image.

    Here is the created "/storage/.config/autostart.sh":

    Assuming your correct output is HDMI2 and that you want to set it to 50hz (60hz in the thread title) try something like this.

    Code
    xrandr --output HDMI2 --mode 1920x1080 --rate 50.00


    Only if it worked and you want to keep it like that then do this.

    Code
    echo "#!/bin/sh" > /storage/.config/autostart.sh
    
    
    echo "xrandr --output HDMI2 --mode 1920x1080 --rate 50.00" >> /storage/.config/autostart.sh


    If it did not worked, post the output of this command below so we can determine the right output connected.

    Code
    xrandr

    This happened to me a while ago, something to do with the TV,GPU(audio) and HDMI config.

    Try to get sound by switching to these settings in system settings/Audio, set "Output configuration" to "fixed" and "Limit sampling rate" try all of them(starting from 44.1) to see if you get sound.

    I used to have "Adjust display refresh rate" to "on start/stop", but my gf and i are watching a lot of 3D movies recently and i have an addon to automatically switch to 3D mode on my TV when a 3D file is played.
    Having "Adjust display refresh rate" to "on start/stop" would create a lot of problems, like not switching the TV to 3D or not putting back to 2D when the movie stop or having the screensaver in 24hz.
    I have "Adjust display refresh rate" to "OFF" for a while now and i have not seen stuttering yet.