7020 HD HDMI und Scart

  • Dear all.


    Sorry I post in english as my german isn't so good.


    I am going to buy a new box and wonder if 7020 HD can send signal on both HDMI and Scart at the same time? I have to use this way because I have a BV 7-40 and would like to have the hdmi-signal at my mainroom but need the scart (analog) to my linkroom.


    All the best wishes


    Jes, Denmark

    Einmal editiert, zuletzt von Jessemand ()

  • same picture on bouth outputs.


    ~year ago have used this scripts to switch videomodes on 8k dream
    with current images maybe some modifications requered, dont know


    /usr/script/switch_VideoMode_to_HDMI_userscript.sh

    Bash
    #!/bin/sh
    echo "switching to HDMI(DVI)"
    echo 16:9>/proc/stb/video/aspect
    echo letterbox>/proc/stb/video/policy2
    echo 1080i50>/proc/stb/video/videomode_50hz
    echo 1080i>/proc/stb/video/videomode_60hz
    echo on>/proc/stb/vmpeg/deinterlace


    /usr/script/switch_VideoMode_to_SCART_userscript.sh

    Bash
    #!/bin/sh
    echo "switching to SCART"
    echo any>/proc/stb/video/aspect
    echo policy>/proc/stb/video/policy2
    echo pal>/proc/stb/video/videomode_50hz
    echo pal>/proc/stb/video/videomode_60hz
    echo on>/proc/stb/vmpeg/deinterlace