Results 1 to 9 of 9

Thread: Ati Radeon and TV-out using S-Video

  1. #1
    Join Date
    Oct 2005
    Beans
    169

    Ati Radeon and TV-out using S-Video

    I have Ati Radeon X1400 graphics card and would like to connect my laptop to a TV using S-Video. With XP everything works smoothly, how can I set up tv-out connection for Ubuntu? Any help appreciated.

  2. #2
    Join Date
    Mar 2006
    Location
    Oxford, OH, USA
    Beans
    1,055
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Ati Radeon and TV-out using S-Video

    Quote Originally Posted by orbital View Post
    I have Ati Radeon X1400 graphics card and would like to connect my laptop to a TV using S-Video. With XP everything works smoothly, how can I set up tv-out connection for Ubuntu? Any help appreciated.
    same problem here
    ________________________________
    System76 Lemur Laptop
    Ubuntu Xenial Xerus LTS 16.04
    Linux Registered User #434330

  3. #3
    Join Date
    Dec 2007
    Location
    California
    Beans
    12
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Ati Radeon and TV-out using S-Video

    This issue has frustrated me greatly. I have a friend using Windows (Friends don't let friends...) so I have been trying to switch him to Ubuntu. Problem is he likes to use a TV as his monitor.

    I have wrestled with the Display settings every which way, and cannot get his TV to work RELIABLY.

    The scorcher is that windows does this perfectly without any intervention. Very embarrassing.

  4. #4
    Join Date
    Mar 2006
    Location
    Oxford, OH, USA
    Beans
    1,055
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Ati Radeon and TV-out using S-Video

    it only works with the FGLRX driver; not the open source driver.
    ________________________________
    System76 Lemur Laptop
    Ubuntu Xenial Xerus LTS 16.04
    Linux Registered User #434330

  5. #5
    Join Date
    Dec 2007
    Beans
    13

    Re: Ati Radeon and TV-out using S-Video

    According to the wiki, the open source radeon driver is supposed to work with the s-video out on almost every card.

    The problem is that it doesn't. if you try to search for an answer, you get 500 responses related to the proprietary drivers and ubuntu 7.x or 8.x

    What we really need is a way to search these posts and ignore anything that's not related to the new version, and maybe lock out the old version threads when the new version is released.

    Does anyone actually know how to get the Radeon drivers (open source) to output s-video?

  6. #6
    Join Date
    Jan 2010
    Beans
    4

    Re: Ati Radeon and TV-out using S-Video

    Use this script to enable S-Video:

    /usr/bin/tvon
    Code:
    #!/bin/bash
    # Enable S-Video at 800x600
    xrandr --addmode S-video 800x600 && xrandr --output S-video --mode 800x600 --pos 200x200 && xvattr -a XV_CRTC -v 1
    It takes an 800x600 portion of your screen and ouputs it via S-Video.

    Use this to disable S-Video:

    /usr/bin/tvoff
    Code:
    #!/bin/bash
    # Disable S-Video
    xvattr -a XV_CRTC -v 0 && xrandr --output S-video --off
    Use this for a dual screen setup:

    /usr/bin/dualscreen
    Code:
    #!/bin/bash
    # Enable dual screen
    xrandr --addmode S-video 800x600
    xrandr --output S-video --mode 800x600 --right-of VGA-0
    Replace VGA-0 with your primary output name. You can also replace right with left.

    The two first scripts are taken from the Internet. I made the last one myself. It requires you to add "Virtual" option to xorg.conf, like this:

    Code:
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth    24
            SubSection "Display"
                    Virtual          2080 1024
            EndSubSection
    EndSection
    Calculate the virtual resolution like this: Sum the X resolution of S-Video (800) and your primary display (mine is 1280). Then compare the Y resolutions of your screen and S-Video (600) and pick the higher one (most likely your primary screen). Hope this helps.

    If these scripts give any errors, please run
    Code:
    sudo apt-get install xrandr
    Naturally you need to make the scripts executable:
    Code:
    sudo chmod +x /usr/bin/tvon
    sudo chmod +x /usr/bin/tvoff
    sudo chmod +x /usr/bin/dualscreen
    Last edited by xtrakt; July 27th, 2010 at 01:18 PM.

  7. #7
    Join Date
    Nov 2007
    Location
    Croatia
    Beans
    43
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Ati Radeon and TV-out using S-Video

    Hello ppl

    Just to join in on a subject

    I tried all those things u mentioned, xtrakt, but there isn't much improvement. I do have picture on TV via S-Video but it's scrambled although u can see somewhat of the desktop.

    Funny thing is that when I tried restarting X, sometimes I do get normal pic on TV but lately even that doesn't work. Maybe it was because of some updates but how can one tell:/

    Any other ideas?
    Luke Skywalker: I don't believe it.
    Yoda: That is why you fail.

  8. #8
    Join Date
    Jun 2012
    Beans
    6

    Re: Ati Radeon and TV-out using S-Video

    Quote Originally Posted by xtrakt View Post
    Use this script to enable S-Video:

    /usr/bin/tvon
    Code:
    #!/bin/bash
    # Enable S-Video at 800x600
    xrandr --addmode S-video 800x600 && xrandr --output S-video --mode 800x600 --pos 200x200 && xvattr -a XV_CRTC -v 1
    It takes an 800x600 portion of your screen and ouputs it via S-Video.

    Use this to disable S-Video:

    /usr/bin/tvoff
    Code:
    #!/bin/bash
    # Disable S-Video
    xvattr -a XV_CRTC -v 0 && xrandr --output S-video --off
    Use this for a dual screen setup:

    /usr/bin/dualscreen
    Code:
    #!/bin/bash
    # Enable dual screen
    xrandr --addmode S-video 800x600
    xrandr --output S-video --mode 800x600 --right-of VGA-0
    Replace VGA-0 with your primary output name. You can also replace right with left.

    The two first scripts are taken from the Internet. I made the last one myself. It requires you to add "Virtual" option to xorg.conf, like this:

    Code:
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth    24
            SubSection "Display"
                    Virtual          2080 1024
            EndSubSection
    EndSection
    Calculate the virtual resolution like this: Sum the X resolution of S-Video (800) and your primary display (mine is 1280). Then compare the Y resolutions of your screen and S-Video (600) and pick the higher one (most likely your primary screen). Hope this helps.

    If these scripts give any errors, please run
    Code:
    sudo apt-get install xrandr
    Naturally you need to make the scripts executable:
    Code:
    sudo chmod +x /usr/bin/tvon
    sudo chmod +x /usr/bin/tvoff
    sudo chmod +x /usr/bin/dualscreen
    Well I a Linux noob but I gat a mirror image on the tv, so at least I can watch Movies thnx bud..If I knew what I wass doing Id say you post is rihgt on but I only used the dual screen setup comand for now

  9. #9
    Join Date
    Feb 2008
    Location
    Texas
    Beans
    29,809
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Ati Radeon and TV-out using S-Video

    Hi, this is an old thread so it has been closed, if you need help please start a new thread with a descriptive title.
    Thanks

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •