How to watch cable TV through Ubuntu?Watch TV/recorded shows from my Comcast cable box on my Mac?How can I...

What is better: yes / no radio, or simple checkbox?

How can I improve my fireworks photography?

When does coming up with an idea constitute sufficient contribution for authorship?

Eww, those bytes are gross

LTSpice: When running a linear AC simulation, how to view the voltage ratio between two voltages?

Does Windows 10's telemetry include sending *.doc files if Word crashed?

If I delete my router's history can my ISP still provide it to my parents?

How to add multiple differently colored borders around a node?

Do my Windows system binaries contain sensitive information?

Obtaining a matrix of complex values from associations giving the real and imaginary parts of each element?

Why is commutativity optional in multiplication for rings?

How can I mix up weapons for large groups of similar monsters/characters?

Why do members of Congress in committee hearings ask witnesses the same question multiple times?

Incompressible fluid definition

What do these brackets mean?

Where is this triangular-shaped space station from?

Why is c4 a better move in this position?

Could be quantum mechanics necessary to analyze some biology scenarios?

Why zero tolerance on nudity in space?

How to acknowledge an embarrassing job interview, now that I work directly with the interviewer?

Where was Karl Mordo in Infinity War?

Quenching swords in dragon blood; why?

How do we edit a novel that's written by several people?

Avoiding morning and evening handshakes



How to watch cable TV through Ubuntu?


Watch TV/recorded shows from my Comcast cable box on my Mac?How can I watch TV on my Computer (Not Online)?Watch videos from a remote computer on the LAN on ubuntuBuilding a media center pc that can control a cable box?How to share a 3G connection through Ubuntu to Windows?Whats a Good Video Card for Ubuntu 11.10 (unity) That supports Dual or More monitorsObtaining clear cable signal with Hauppage 1191-950Q TV TunerWatch TV on computer through cable inputHow to watch movies on TV from NAS server (Samba)How to set `ubuntu` vm box screen resolution to `1600x900`













7















Is it possible to watch cable TV (specifically Comcast in Massachusetts) through the monitor of a computer running Ubuntu? If so, what additional hardware and software are required for this? Better yet, is there a step-by-step how-to for something like this?










share|improve this question

























  • Do any of the supplied answers help? If so, could you mark one as correct or at least mark the answers up?

    – beatgammit
    Apr 6 '11 at 9:35
















7















Is it possible to watch cable TV (specifically Comcast in Massachusetts) through the monitor of a computer running Ubuntu? If so, what additional hardware and software are required for this? Better yet, is there a step-by-step how-to for something like this?










share|improve this question

























  • Do any of the supplied answers help? If so, could you mark one as correct or at least mark the answers up?

    – beatgammit
    Apr 6 '11 at 9:35














7












7








7








Is it possible to watch cable TV (specifically Comcast in Massachusetts) through the monitor of a computer running Ubuntu? If so, what additional hardware and software are required for this? Better yet, is there a step-by-step how-to for something like this?










share|improve this question
















Is it possible to watch cable TV (specifically Comcast in Massachusetts) through the monitor of a computer running Ubuntu? If so, what additional hardware and software are required for this? Better yet, is there a step-by-step how-to for something like this?







ubuntu tv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 21 '11 at 6:55









studiohack

11.3k1880114




11.3k1880114










asked Mar 27 '11 at 14:18









kjokjo

58621228




58621228













  • Do any of the supplied answers help? If so, could you mark one as correct or at least mark the answers up?

    – beatgammit
    Apr 6 '11 at 9:35



















  • Do any of the supplied answers help? If so, could you mark one as correct or at least mark the answers up?

    – beatgammit
    Apr 6 '11 at 9:35

















Do any of the supplied answers help? If so, could you mark one as correct or at least mark the answers up?

– beatgammit
Apr 6 '11 at 9:35





Do any of the supplied answers help? If so, could you mark one as correct or at least mark the answers up?

– beatgammit
Apr 6 '11 at 9:35










3 Answers
3






active

oldest

votes


















2














You will also need some software. I like MythTV, and it has a list of digital tuners that work with MythTV.



There are also analog tuners, but you will probably need a digital tuner unless you have a digital to analog converter box. The signal may be encrypted, so you may need to use the box and get an analog tuner.



Here is a page with links to different supported cards.






share|improve this answer































    1














    I know nothing about ubuntu but the hardware you need is called a TV tuner card. Actually I think they make external ones too. Make sure it accepts the cable input (coax or whatever). The software will then allow you to watch TV in a window and you can continue working with the OS. You can also record. I found this via google, maybe this app is the right one to use with your hardware: http://ubuntuforums.org/showthread.php?t=230279






    share|improve this answer































      0














      Use a TV cable box converter with a HDMI output port and install a plugNplay HDMI to USB converter device (USB Capture HDMI Video Card -see Amazon), as almost all computers do not have a HDMI input port. (WARNING: do NOT use a Hauppauge device in a linux environment!!). Connect to USB(3.0) port on computer (3.0 is NECESSARY for performance). Make sure that if there are other USB audio input devices, such as a plugNplay USB microphone, that they are NOT plugged in the same USB hub to avoid IRQ issues.



      VLC is the obvious choice of software to use to play the capture stream, but it unfortunately has timing issues with starting both audio and video emanating from the same capture device and seems to give preference to video over audio. Thus, MOST of the time, VLC fails to set the default audio output device, so there is no sound!. This appears to be a deficiency in the latest 2.2.2 weathermax VLC software that can be installed via the deb package. (Install of VLC 3.0.6 using snap has its own issues, including this one, and is not recommended!). (MPlayer and the OBS software both exhibit variable latency with the sound. Without the sound issues, either MPlayer or VLC by themselves would be the obvious solution.) Until this VLC issue is resolved, use separate programs for the audio and the video!!!!. After some experimentation, use this SHELL SCRIPT (eg. /PATH/NAME.sh '1' '3')



      Load MPlayer WITHOUT sound and with window size and screen position as shown. Adjust position and size as desired according to monitor size. The video hardware input device is specified by the first shell script input variable.



      mplayer tv:// -tv device=/dev/video$1 -xy 500 -geometry 1395:765 & 


      Configure VLC to allow multiple instances and disable resizing of window to video size (see VLC-Tools-Preferences).



      Start VLC with capture device the default webcamera (usually video0). The audio hardware input device of the HDMI/USB converter is specified by the second shell script input variable.
      #VLC WILL PLAY THE AUDIO RELIABLY WITHOUT LATENCY!
      The no-video parameter seems superfluous since VLC will still open up the default webcam, just not show it. But it appears to help with speed of audio acquisition. The default webcam is still in use and cannot be used for other purposes such as Skype while this instance of VLC is active.



      vlc v4l2:///dev/video0 :input-slave=alsa://hw:$2,0 --no-video


      Squeeze the VLC vertical video size to zero, leaving just the VLC control bar visible so you can still control the audio. Adjust VLC width accordingly and position the VLC control bar on the screen, consistent with MPlayer position. (VLC will from then on automatically assume this placement and size on reloads.)



      This hybrid solution is 100% reliable and also is more efficient in CPU utilization than VLC alone (when VLC alone works cleanly!). Use the cable box remote to control the TV channel you watch, including streaming channels that the cable service supports (and you have paid for!). Below is what it looks like.



      A MPlayer only shell script that also works is:



      pulse-audio -k #(not sure if this is needed)
      pactl load-module module-loopback latency_msec=1
      mplayer tv:// -tv device=/dev/video1 -xy 500 -geometry 1395:765
      wait
      pactl unload-module module-loopback


      It leaves the default webcam available for use but it is unpredictable whether sound latency occurs or does not occur. I'm sure someone has an answer but I don't know it. The same is true for the OBS software. It definitely appears when other programs are active that use sound.



      I much prefer the combination MPlayer/VLC shell script because of its reliability and its INDEPENDENT AUDIO CONTROL through VLC. You can run additional programs that use sound (including additional VLC instances) without sound issues.






      share|improve this answer










      New contributor




      peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "3"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f263141%2fhow-to-watch-cable-tv-through-ubuntu%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        2














        You will also need some software. I like MythTV, and it has a list of digital tuners that work with MythTV.



        There are also analog tuners, but you will probably need a digital tuner unless you have a digital to analog converter box. The signal may be encrypted, so you may need to use the box and get an analog tuner.



        Here is a page with links to different supported cards.






        share|improve this answer




























          2














          You will also need some software. I like MythTV, and it has a list of digital tuners that work with MythTV.



          There are also analog tuners, but you will probably need a digital tuner unless you have a digital to analog converter box. The signal may be encrypted, so you may need to use the box and get an analog tuner.



          Here is a page with links to different supported cards.






          share|improve this answer


























            2












            2








            2







            You will also need some software. I like MythTV, and it has a list of digital tuners that work with MythTV.



            There are also analog tuners, but you will probably need a digital tuner unless you have a digital to analog converter box. The signal may be encrypted, so you may need to use the box and get an analog tuner.



            Here is a page with links to different supported cards.






            share|improve this answer













            You will also need some software. I like MythTV, and it has a list of digital tuners that work with MythTV.



            There are also analog tuners, but you will probably need a digital tuner unless you have a digital to analog converter box. The signal may be encrypted, so you may need to use the box and get an analog tuner.



            Here is a page with links to different supported cards.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 31 '11 at 19:29









            beatgammitbeatgammit

            1,06711016




            1,06711016

























                1














                I know nothing about ubuntu but the hardware you need is called a TV tuner card. Actually I think they make external ones too. Make sure it accepts the cable input (coax or whatever). The software will then allow you to watch TV in a window and you can continue working with the OS. You can also record. I found this via google, maybe this app is the right one to use with your hardware: http://ubuntuforums.org/showthread.php?t=230279






                share|improve this answer




























                  1














                  I know nothing about ubuntu but the hardware you need is called a TV tuner card. Actually I think they make external ones too. Make sure it accepts the cable input (coax or whatever). The software will then allow you to watch TV in a window and you can continue working with the OS. You can also record. I found this via google, maybe this app is the right one to use with your hardware: http://ubuntuforums.org/showthread.php?t=230279






                  share|improve this answer


























                    1












                    1








                    1







                    I know nothing about ubuntu but the hardware you need is called a TV tuner card. Actually I think they make external ones too. Make sure it accepts the cable input (coax or whatever). The software will then allow you to watch TV in a window and you can continue working with the OS. You can also record. I found this via google, maybe this app is the right one to use with your hardware: http://ubuntuforums.org/showthread.php?t=230279






                    share|improve this answer













                    I know nothing about ubuntu but the hardware you need is called a TV tuner card. Actually I think they make external ones too. Make sure it accepts the cable input (coax or whatever). The software will then allow you to watch TV in a window and you can continue working with the OS. You can also record. I found this via google, maybe this app is the right one to use with your hardware: http://ubuntuforums.org/showthread.php?t=230279







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Mar 27 '11 at 15:19









                    CreeDoroflCreeDorofl

                    1,51852034




                    1,51852034























                        0














                        Use a TV cable box converter with a HDMI output port and install a plugNplay HDMI to USB converter device (USB Capture HDMI Video Card -see Amazon), as almost all computers do not have a HDMI input port. (WARNING: do NOT use a Hauppauge device in a linux environment!!). Connect to USB(3.0) port on computer (3.0 is NECESSARY for performance). Make sure that if there are other USB audio input devices, such as a plugNplay USB microphone, that they are NOT plugged in the same USB hub to avoid IRQ issues.



                        VLC is the obvious choice of software to use to play the capture stream, but it unfortunately has timing issues with starting both audio and video emanating from the same capture device and seems to give preference to video over audio. Thus, MOST of the time, VLC fails to set the default audio output device, so there is no sound!. This appears to be a deficiency in the latest 2.2.2 weathermax VLC software that can be installed via the deb package. (Install of VLC 3.0.6 using snap has its own issues, including this one, and is not recommended!). (MPlayer and the OBS software both exhibit variable latency with the sound. Without the sound issues, either MPlayer or VLC by themselves would be the obvious solution.) Until this VLC issue is resolved, use separate programs for the audio and the video!!!!. After some experimentation, use this SHELL SCRIPT (eg. /PATH/NAME.sh '1' '3')



                        Load MPlayer WITHOUT sound and with window size and screen position as shown. Adjust position and size as desired according to monitor size. The video hardware input device is specified by the first shell script input variable.



                        mplayer tv:// -tv device=/dev/video$1 -xy 500 -geometry 1395:765 & 


                        Configure VLC to allow multiple instances and disable resizing of window to video size (see VLC-Tools-Preferences).



                        Start VLC with capture device the default webcamera (usually video0). The audio hardware input device of the HDMI/USB converter is specified by the second shell script input variable.
                        #VLC WILL PLAY THE AUDIO RELIABLY WITHOUT LATENCY!
                        The no-video parameter seems superfluous since VLC will still open up the default webcam, just not show it. But it appears to help with speed of audio acquisition. The default webcam is still in use and cannot be used for other purposes such as Skype while this instance of VLC is active.



                        vlc v4l2:///dev/video0 :input-slave=alsa://hw:$2,0 --no-video


                        Squeeze the VLC vertical video size to zero, leaving just the VLC control bar visible so you can still control the audio. Adjust VLC width accordingly and position the VLC control bar on the screen, consistent with MPlayer position. (VLC will from then on automatically assume this placement and size on reloads.)



                        This hybrid solution is 100% reliable and also is more efficient in CPU utilization than VLC alone (when VLC alone works cleanly!). Use the cable box remote to control the TV channel you watch, including streaming channels that the cable service supports (and you have paid for!). Below is what it looks like.



                        A MPlayer only shell script that also works is:



                        pulse-audio -k #(not sure if this is needed)
                        pactl load-module module-loopback latency_msec=1
                        mplayer tv:// -tv device=/dev/video1 -xy 500 -geometry 1395:765
                        wait
                        pactl unload-module module-loopback


                        It leaves the default webcam available for use but it is unpredictable whether sound latency occurs or does not occur. I'm sure someone has an answer but I don't know it. The same is true for the OBS software. It definitely appears when other programs are active that use sound.



                        I much prefer the combination MPlayer/VLC shell script because of its reliability and its INDEPENDENT AUDIO CONTROL through VLC. You can run additional programs that use sound (including additional VLC instances) without sound issues.






                        share|improve this answer










                        New contributor




                        peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.

























                          0














                          Use a TV cable box converter with a HDMI output port and install a plugNplay HDMI to USB converter device (USB Capture HDMI Video Card -see Amazon), as almost all computers do not have a HDMI input port. (WARNING: do NOT use a Hauppauge device in a linux environment!!). Connect to USB(3.0) port on computer (3.0 is NECESSARY for performance). Make sure that if there are other USB audio input devices, such as a plugNplay USB microphone, that they are NOT plugged in the same USB hub to avoid IRQ issues.



                          VLC is the obvious choice of software to use to play the capture stream, but it unfortunately has timing issues with starting both audio and video emanating from the same capture device and seems to give preference to video over audio. Thus, MOST of the time, VLC fails to set the default audio output device, so there is no sound!. This appears to be a deficiency in the latest 2.2.2 weathermax VLC software that can be installed via the deb package. (Install of VLC 3.0.6 using snap has its own issues, including this one, and is not recommended!). (MPlayer and the OBS software both exhibit variable latency with the sound. Without the sound issues, either MPlayer or VLC by themselves would be the obvious solution.) Until this VLC issue is resolved, use separate programs for the audio and the video!!!!. After some experimentation, use this SHELL SCRIPT (eg. /PATH/NAME.sh '1' '3')



                          Load MPlayer WITHOUT sound and with window size and screen position as shown. Adjust position and size as desired according to monitor size. The video hardware input device is specified by the first shell script input variable.



                          mplayer tv:// -tv device=/dev/video$1 -xy 500 -geometry 1395:765 & 


                          Configure VLC to allow multiple instances and disable resizing of window to video size (see VLC-Tools-Preferences).



                          Start VLC with capture device the default webcamera (usually video0). The audio hardware input device of the HDMI/USB converter is specified by the second shell script input variable.
                          #VLC WILL PLAY THE AUDIO RELIABLY WITHOUT LATENCY!
                          The no-video parameter seems superfluous since VLC will still open up the default webcam, just not show it. But it appears to help with speed of audio acquisition. The default webcam is still in use and cannot be used for other purposes such as Skype while this instance of VLC is active.



                          vlc v4l2:///dev/video0 :input-slave=alsa://hw:$2,0 --no-video


                          Squeeze the VLC vertical video size to zero, leaving just the VLC control bar visible so you can still control the audio. Adjust VLC width accordingly and position the VLC control bar on the screen, consistent with MPlayer position. (VLC will from then on automatically assume this placement and size on reloads.)



                          This hybrid solution is 100% reliable and also is more efficient in CPU utilization than VLC alone (when VLC alone works cleanly!). Use the cable box remote to control the TV channel you watch, including streaming channels that the cable service supports (and you have paid for!). Below is what it looks like.



                          A MPlayer only shell script that also works is:



                          pulse-audio -k #(not sure if this is needed)
                          pactl load-module module-loopback latency_msec=1
                          mplayer tv:// -tv device=/dev/video1 -xy 500 -geometry 1395:765
                          wait
                          pactl unload-module module-loopback


                          It leaves the default webcam available for use but it is unpredictable whether sound latency occurs or does not occur. I'm sure someone has an answer but I don't know it. The same is true for the OBS software. It definitely appears when other programs are active that use sound.



                          I much prefer the combination MPlayer/VLC shell script because of its reliability and its INDEPENDENT AUDIO CONTROL through VLC. You can run additional programs that use sound (including additional VLC instances) without sound issues.






                          share|improve this answer










                          New contributor




                          peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.























                            0












                            0








                            0







                            Use a TV cable box converter with a HDMI output port and install a plugNplay HDMI to USB converter device (USB Capture HDMI Video Card -see Amazon), as almost all computers do not have a HDMI input port. (WARNING: do NOT use a Hauppauge device in a linux environment!!). Connect to USB(3.0) port on computer (3.0 is NECESSARY for performance). Make sure that if there are other USB audio input devices, such as a plugNplay USB microphone, that they are NOT plugged in the same USB hub to avoid IRQ issues.



                            VLC is the obvious choice of software to use to play the capture stream, but it unfortunately has timing issues with starting both audio and video emanating from the same capture device and seems to give preference to video over audio. Thus, MOST of the time, VLC fails to set the default audio output device, so there is no sound!. This appears to be a deficiency in the latest 2.2.2 weathermax VLC software that can be installed via the deb package. (Install of VLC 3.0.6 using snap has its own issues, including this one, and is not recommended!). (MPlayer and the OBS software both exhibit variable latency with the sound. Without the sound issues, either MPlayer or VLC by themselves would be the obvious solution.) Until this VLC issue is resolved, use separate programs for the audio and the video!!!!. After some experimentation, use this SHELL SCRIPT (eg. /PATH/NAME.sh '1' '3')



                            Load MPlayer WITHOUT sound and with window size and screen position as shown. Adjust position and size as desired according to monitor size. The video hardware input device is specified by the first shell script input variable.



                            mplayer tv:// -tv device=/dev/video$1 -xy 500 -geometry 1395:765 & 


                            Configure VLC to allow multiple instances and disable resizing of window to video size (see VLC-Tools-Preferences).



                            Start VLC with capture device the default webcamera (usually video0). The audio hardware input device of the HDMI/USB converter is specified by the second shell script input variable.
                            #VLC WILL PLAY THE AUDIO RELIABLY WITHOUT LATENCY!
                            The no-video parameter seems superfluous since VLC will still open up the default webcam, just not show it. But it appears to help with speed of audio acquisition. The default webcam is still in use and cannot be used for other purposes such as Skype while this instance of VLC is active.



                            vlc v4l2:///dev/video0 :input-slave=alsa://hw:$2,0 --no-video


                            Squeeze the VLC vertical video size to zero, leaving just the VLC control bar visible so you can still control the audio. Adjust VLC width accordingly and position the VLC control bar on the screen, consistent with MPlayer position. (VLC will from then on automatically assume this placement and size on reloads.)



                            This hybrid solution is 100% reliable and also is more efficient in CPU utilization than VLC alone (when VLC alone works cleanly!). Use the cable box remote to control the TV channel you watch, including streaming channels that the cable service supports (and you have paid for!). Below is what it looks like.



                            A MPlayer only shell script that also works is:



                            pulse-audio -k #(not sure if this is needed)
                            pactl load-module module-loopback latency_msec=1
                            mplayer tv:// -tv device=/dev/video1 -xy 500 -geometry 1395:765
                            wait
                            pactl unload-module module-loopback


                            It leaves the default webcam available for use but it is unpredictable whether sound latency occurs or does not occur. I'm sure someone has an answer but I don't know it. The same is true for the OBS software. It definitely appears when other programs are active that use sound.



                            I much prefer the combination MPlayer/VLC shell script because of its reliability and its INDEPENDENT AUDIO CONTROL through VLC. You can run additional programs that use sound (including additional VLC instances) without sound issues.






                            share|improve this answer










                            New contributor




                            peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.










                            Use a TV cable box converter with a HDMI output port and install a plugNplay HDMI to USB converter device (USB Capture HDMI Video Card -see Amazon), as almost all computers do not have a HDMI input port. (WARNING: do NOT use a Hauppauge device in a linux environment!!). Connect to USB(3.0) port on computer (3.0 is NECESSARY for performance). Make sure that if there are other USB audio input devices, such as a plugNplay USB microphone, that they are NOT plugged in the same USB hub to avoid IRQ issues.



                            VLC is the obvious choice of software to use to play the capture stream, but it unfortunately has timing issues with starting both audio and video emanating from the same capture device and seems to give preference to video over audio. Thus, MOST of the time, VLC fails to set the default audio output device, so there is no sound!. This appears to be a deficiency in the latest 2.2.2 weathermax VLC software that can be installed via the deb package. (Install of VLC 3.0.6 using snap has its own issues, including this one, and is not recommended!). (MPlayer and the OBS software both exhibit variable latency with the sound. Without the sound issues, either MPlayer or VLC by themselves would be the obvious solution.) Until this VLC issue is resolved, use separate programs for the audio and the video!!!!. After some experimentation, use this SHELL SCRIPT (eg. /PATH/NAME.sh '1' '3')



                            Load MPlayer WITHOUT sound and with window size and screen position as shown. Adjust position and size as desired according to monitor size. The video hardware input device is specified by the first shell script input variable.



                            mplayer tv:// -tv device=/dev/video$1 -xy 500 -geometry 1395:765 & 


                            Configure VLC to allow multiple instances and disable resizing of window to video size (see VLC-Tools-Preferences).



                            Start VLC with capture device the default webcamera (usually video0). The audio hardware input device of the HDMI/USB converter is specified by the second shell script input variable.
                            #VLC WILL PLAY THE AUDIO RELIABLY WITHOUT LATENCY!
                            The no-video parameter seems superfluous since VLC will still open up the default webcam, just not show it. But it appears to help with speed of audio acquisition. The default webcam is still in use and cannot be used for other purposes such as Skype while this instance of VLC is active.



                            vlc v4l2:///dev/video0 :input-slave=alsa://hw:$2,0 --no-video


                            Squeeze the VLC vertical video size to zero, leaving just the VLC control bar visible so you can still control the audio. Adjust VLC width accordingly and position the VLC control bar on the screen, consistent with MPlayer position. (VLC will from then on automatically assume this placement and size on reloads.)



                            This hybrid solution is 100% reliable and also is more efficient in CPU utilization than VLC alone (when VLC alone works cleanly!). Use the cable box remote to control the TV channel you watch, including streaming channels that the cable service supports (and you have paid for!). Below is what it looks like.



                            A MPlayer only shell script that also works is:



                            pulse-audio -k #(not sure if this is needed)
                            pactl load-module module-loopback latency_msec=1
                            mplayer tv:// -tv device=/dev/video1 -xy 500 -geometry 1395:765
                            wait
                            pactl unload-module module-loopback


                            It leaves the default webcam available for use but it is unpredictable whether sound latency occurs or does not occur. I'm sure someone has an answer but I don't know it. The same is true for the OBS software. It definitely appears when other programs are active that use sound.



                            I much prefer the combination MPlayer/VLC shell script because of its reliability and its INDEPENDENT AUDIO CONTROL through VLC. You can run additional programs that use sound (including additional VLC instances) without sound issues.







                            share|improve this answer










                            New contributor




                            peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            share|improve this answer



                            share|improve this answer








                            edited 4 mins ago









                            duskwuff

                            2,9551514




                            2,9551514






                            New contributor




                            peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            answered 39 mins ago









                            peter hoefsmitpeter hoefsmit

                            1




                            1




                            New contributor




                            peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            New contributor





                            peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






                            peter hoefsmit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Super User!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f263141%2fhow-to-watch-cable-tv-through-ubuntu%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

                                Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

                                Couldn't open a raw socket. Error: Permission denied (13) (nmap)Is it possible to run networking commands...