Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: Welke tv kaarten ondersteunt linux?  (gelezen 9034 keer)

Welke tv kaarten ondersteunt linux?
« Gepost op: 2007/01/24, 21:26:45 »
Ik wou graag een tv kaart kopen voor in mijn computer maar wil liever niet afhankelijk zijn van windows.. de tv kaart die ik wil kopen is een :
Dazzle TV Kaart van Pinnacle
Maar nu de vraag kan deze kaart ook overweg met linux?
Ik hoop dat iemand daar antwoord op heeft wil de kaart zosnel mogelijk gaan kopen
Met Vriendelijke Groet:Randy de Raadt.
Ben geen computer-nerd.. weet niet super veel van pcs.
Maar ben er graag mee bezig :)

Offline wutnubu

  • Lid
Welke tv kaarten ondersteunt linux?
« Reactie #1 Gepost op: 2007/01/25, 06:48:20 »
Alle kaarten van Hauppage worden ondersteund en veel van Pinnacle.
Maar koop vooral geen hele goedkope. Dan is de kans kleiner en ook de kwaliteit minder.

Hier gebrukken we Pinnacle PC-TV-stereo, werkt redelijk goed, mits intern geluid via CD kabeltje doorverbonden is.
Afstandbediening heb ik niet voor elkaar gekregen, maar ook slecht 1 dag aan besteed.

Groet.

Welke tv kaarten ondersteunt linux?
« Reactie #2 Gepost op: 2007/01/25, 09:45:53 »
Bedankt voor de uitleg :)
Ik neem de proef dan toch maar op de som ;)
Mvg Randy.
Ben geen computer-nerd.. weet niet super veel van pcs.
Maar ben er graag mee bezig :)

Mudkip

  • Gast
Welke tv kaarten ondersteunt linux?
« Reactie #3 Gepost op: 2007/01/25, 15:09:06 »
Hah, ik heb ook nog 2 tv kaarten liggen van hauppage en pinnacle (weet niet waarom), ik moet dat ook is proberen.

een klein vraagje, met welk programma kijk je dan tv?
Edit: google! Hah.

Offline wutnubu

  • Lid
Welke tv kaarten ondersteunt linux?
« Reactie #4 Gepost op: 2007/01/25, 15:49:45 »
Ik kijk met KDEtv (de kids) en TVTime (ikzellef)

Welke tv kaarten ondersteunt linux?
« Reactie #5 Gepost op: 2007/01/25, 16:06:41 »
Kan je met die programmas ook recorden?
Ben geen computer-nerd.. weet niet super veel van pcs.
Maar ben er graag mee bezig :)

Offline wutnubu

  • Lid
Welke tv kaarten ondersteunt linux?
« Reactie #6 Gepost op: 2007/01/26, 06:33:55 »
Nee dat kan met dit scriptje.
Vergeet niet een channels.cvs (zenderlijst) vanuit KDE te exporteren naar de map zoals vermeld in het script.
Kijk eens naat het "at" commando om e.e.a. te schedulen.

#!/bin/bash

# VBRATE: 470 -> 3 h / CD, 580 -> 2.5 h / CD, 740 -> 2 h / CD
VBRATE=740
ABRATE=64
OUTDIR=$HOME
KDETV_CH_LIST="${HOME}/.kde/share/apps/kdetv/channels.cvs"
BADAPPS="kdetv-bin|kradio|celestia|foobillard|stellarium"
WAITTIME=20

ERR_BADUSAGE=1
ERR_FILEEXISTS=2
ERR_BADCHANNEL=3
ERR_RUNNING=4
ERR_CANTKILL=5

if [ $# -ne 3 ]; then
  printf "Usage: `basename \"$0\"` <rec_time> (e.g. `basename \"$0\"` 7 \"The Simpsons\" \"01:30:00\")\n\n"<br />  exit $ERR_BADUSAGE<br />fi<br /><br />CHANNEL="$1"<br />TITLE="$2"<br />RECTIME="$3"<br /><br />if [ -s "${OUTDIR}/${TITLE}.avi" ]; then<br />  printf "File \"${OUTDIR}/${TITLE}.avi\" already exists!\n\n"<br />  exit $ERR_FILEEXISTS<br />fi<br /><br />FREQ=`gawk -F "," -v CH="$CHANNEL" '{ if ( $1 == CH ) { print $2 / 1000; exit 0 } }' "$KDETV_CH_LIST"`<br /><br />if [ -z $FREQ ]; then<br />  printf "There's no channel \"$CHANNEL\"!\n\n"<br />  exit $ERR_BADCHANNEL<br />fi<br /><br />if [ `ps -A -o "comm args" | grep -E "^mencoder" | grep -E "tv://" | wc -l` -gt 0 ]; then<br />  printf "MEncoder already running!\n\n"<br />  exit $ERR_RUNNING<br />fi<br /><br />if [ `pgrep -x "$BADAPPS" | wc -l` -gt 0 ]; then<br />  pkill -x "$BADAPPS"<br />  if [ $? -ne 0 ]; then<br />    printf "Cannot kill one of $BADAPPS!\n\n"<br />    exit $ERR_CANTKILL<br />  fi<br />  amixer -q set Line mute<br />  echo "Waiting $WAITTIME seconds for resources to become available..."<br />  sleep $WAITTIME<br />fi<br /><br />amixer -q set Line cap<br />amixer -q set Capture cap<br /><br />if [ "$RECTIME" = "0" ]; then<br />  mencoder tv:// -tv driver=v4l2:device=/dev/video:input=0:freq=$FREQ:width=768:height=576:fps=25:norm=0 -vf crop=744:552,pp=lb,scale=496:368 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=$VBRATE:mbd=1 -oac mp3lame -lameopts cbr:mode=3:br=$ABRATE:aq=2 -ffourcc DIVX -o "${OUTDIR}/${TITLE}.avi"<br />else<br />  mencoder tv:// -tv driver=v4l2:device=/dev/video:input=0:freq=$FREQ:width=768:height=576:fps=25:norm=0 -vf crop=744:552,pp=lb,scale=496:368 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=$VBRATE:mbd=1 -oac mp3lame -lameopts cbr:mode=3:br=$ABRATE:aq=2 -ffourcc DIVX -o "${OUTDIR}/${TITLE}.avi" -endpos "$RECTIME"<br />fi</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_66926"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.6;msg=66926">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg66968"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_66968_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_66968"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg66968#msg66968" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #7 Gepost op:</strong> 2007/01/26, 10:43:41 »</div> <div id="msg_66968_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_66968">Wat moet ik precies met dat scriptje..?<br />Ik snap er weinig van ben nieto slim in ubuntu haha.</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_66968"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.7;msg=66968">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_66968_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg66972"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=607" title="Bekijk profiel van wutnubu">wutnubu</a> </h4> <ul class="reset smalltext" id="msg_66972_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_66972"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg66972#msg66972" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #8 Gepost op:</strong> 2007/01/26, 11:04:30 »</div> <div id="msg_66972_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_66972">De tekst kopieer je in een tekstbestandje dat je aanmaakt met gedit (Toepassing->Hulpmiddelen->Tekst-Editor) dat sla je op als "/home/jeeigenmapnaam/opnemen.sh".<br /><br />Doe dan  "chmod a+x opnemen.sh" vanuit een terminalsessie (Toepassing->Hulpmiddelen->Terminalvenster).<br /><br />Start het op met "sh opnemen.sh"<br /><br />Je ziet dan een foutmelding die aangeeft welke parameters je moet meegeven.<br /><br />En je doet nogmaals de laatste stap met dan wel de goede parameters.<br /><br />Het opnemen is dan gestart.<br /><br />Succes</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_66972"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.8;msg=66972">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg66990"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_66990_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_66990"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg66990#msg66990" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #9 Gepost op:</strong> 2007/01/26, 12:27:12 »</div> <div id="msg_66990_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_66990">Ok bedankt voor de uitleg mijn tv kaart komt vanmiddag binnen dan ga ik het is proberen.<br />Mocht ik nog vragen hebben mag ik ze hier altijd stellen he ?<img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /><br />Mvg Randy.</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_66990"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.9;msg=66990">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_66990_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67083"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=607" title="Bekijk profiel van wutnubu">wutnubu</a> </h4> <ul class="reset smalltext" id="msg_67083_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67083"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67083#msg67083" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #10 Gepost op:</strong> 2007/01/26, 16:42:45 »</div> <div id="msg_67083_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67083">Tuurlijk, vanzelluf....<br /><br />Succes</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67083"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.10;msg=67083">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67170"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67170_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67170"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67170#msg67170" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #11 Gepost op:</strong> 2007/01/26, 19:54:36 »</div> <div id="msg_67170_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67170">Kaart werkt prima in ubuntu.<br />Aleen als ik canalen ga zoeken vind hij helemaal niks.?</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67170"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.11;msg=67170">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67170_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67200"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67200_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67200"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67200#msg67200" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #12 Gepost op:</strong> 2007/01/26, 21:05:47 »</div> <div id="msg_67200_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67200">Heb al paar netten gevonden stuk of 5 maar meer vind tvtime ook niet..<br />En ik heb geen geluid kan iemand mij aub helpen?</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67200"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.12;msg=67200">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67200_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67278"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=607" title="Bekijk profiel van wutnubu">wutnubu</a> </h4> <ul class="reset smalltext" id="msg_67278_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67278"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67278#msg67278" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #13 Gepost op:</strong> 2007/01/27, 07:25:41 »</div> <div id="msg_67278_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67278">Heb je de kaart verbonden met je geluidskaart, of intern met het moederbord?<br /><br />Zit er voldoende versterking tussen je Kabel en de computer, m.a.w. een antennesignaal versterker?<br /><br />Groet</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67278"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.13;msg=67278">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67303"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67303_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67303"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67303#msg67303" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #14 Gepost op:</strong> 2007/01/27, 11:01:30 »</div> <div id="msg_67303_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67303">Ik heb de tv kaart gewoon in mijn moederbord gestoken.<br />Dus ik denk wel dat het goed is ja.. <img src="https://forum.ubuntu-nl.org/Smileys/default/shocked.gif" alt=":O" title="shocked" class="smiley" /><br />(Antenne heb ik niet)</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67303"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.14;msg=67303">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67303_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67306"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67306_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67306"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67306#msg67306" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #15 Gepost op:</strong> 2007/01/27, 11:06:07 »</div> <div id="msg_67306_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67306">De videoweergave kon niet worden overgenomen.<br />Met de huidige pluginconfiguratie is videoweergave niet mogelijk. Probeer de instellingen van de Video4Linux-plugin aan te passen.<br /><br />Deze melding krijg ik bij kdetv...</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67306"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.15;msg=67306">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67306_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67354"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1222" title="Bekijk profiel van Gandyman">Gandyman</a> </h4> <ul class="reset smalltext" id="msg_67354_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1222"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1222.jpg" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67354"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67354#msg67354" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #16 Gepost op:</strong> 2007/01/27, 12:55:25 »</div> <div id="msg_67354_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67354">uhm Mescaline <img src="https://forum.ubuntu-nl.org/Smileys/default/huh.gif" alt="???" title="Huh?" class="smiley" /><br /><br />Zonder antenne zal je niet veel tot weinig ontvangen he <img src="https://forum.ubuntu-nl.org/Smileys/default/huh.gif" alt="???" title="Huh?" class="smiley" /><br /><br />Trek de antenne maar eens uit je tv om te testen <img src="https://forum.ubuntu-nl.org/Smileys/default/tongue.gif" alt=":P" title="Tongue" class="smiley" /></div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67354"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.16;msg=67354">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67354_signature"><span style="color: navy;" class="bbc_color">I don't suffer from insanity, I enjoy every minute of it.</span><br /><strong>Microsoft geeft je een raam, Linux geeft je een heel huis</strong> <img src="https://forum.ubuntu-nl.org/Smileys/default/cheesy.gif" alt=":D" title="Cheesy" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67382"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67382_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67382"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67382#msg67382" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #17 Gepost op:</strong> 2007/01/27, 14:38:51 »</div> <div id="msg_67382_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67382">Ik gebruik kabel ?<img src="https://forum.ubuntu-nl.org/Smileys/default/tongue.gif" alt=":P" title="Tongue" class="smiley" /></div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67382"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.17;msg=67382">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67382_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67465"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67465_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67465"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67465#msg67465" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #18 Gepost op:</strong> 2007/01/27, 18:51:31 »</div> <div id="msg_67465_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67465">Kan iemand  mij aub verder helpen ik wil vanavond liefstwel tv kunnen kijken <img src="https://forum.ubuntu-nl.org/Smileys/default/sad.gif" alt=":(" title="Sad" class="smiley" /><br />Anders moet ik weer naar Windows <img src="https://forum.ubuntu-nl.org/Smileys/default/shocked.gif" alt=":O" title="shocked" class="smiley" /></div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67465"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.18;msg=67465">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67465_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67490"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> Mudkip </h4> <ul class="reset smalltext" id="msg_67490_extra_info"> <li class="membergroup">Gast</li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67490"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67490#msg67490" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #19 Gepost op:</strong> 2007/01/27, 21:29:35 »</div> <div id="msg_67490_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67490">Ik doe een wilde gok...<br /><br />Probeer een ander dinges (TVTIME), of probeer Windows, of misschien is ie gewoon niet helemaal lekker... ik snap niet waarom die niet zou werken, als ie compatible is... misschien (linux) drivers nodig?</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67490"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.19;msg=67490">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67497"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67497_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67497"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67497#msg67497" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #20 Gepost op:</strong> 2007/01/27, 21:40:22 »</div> <div id="msg_67497_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67497">Linux drivers zou goed kunnen..<br />Linux ziet de kaart wel gewoon dus over het algemeen best vreemd.<br />In Windows werkt tie perfect alleen doe liever alles op linux..<br />Kost wat moeite maar dan heb je ook wat toch ? <img src="https://forum.ubuntu-nl.org/Smileys/default/wink.gif" alt=";)" title="Wink" class="smiley" /><br />(TvTime ook geprobeert vind 5 zenders en heeft geen geluid..)</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67497"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.20;msg=67497">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67497_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67502"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> Mudkip </h4> <ul class="reset smalltext" id="msg_67502_extra_info"> <li class="membergroup">Gast</li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67502"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67502#msg67502" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #21 Gepost op:</strong> 2007/01/27, 21:50:32 »</div> <div id="msg_67502_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67502">Mijn hardware zag ubuntu vaak ook, maar werkte niet volledig. oplossing: drivers.<br /><br />Google!</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67502"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.21;msg=67502">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67506"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67506_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67506"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67506#msg67506" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #22 Gepost op:</strong> 2007/01/27, 22:17:31 »</div> <div id="msg_67506_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67506"><a href="http://www.nxp.com/pip/saa7134hl" class="bbc_link" target="_blank" rel="noopener noreferrer">http://www.nxp.com/pip/saa7134hl</a><br />Deze driver heb ik gedownload ik heb alleen geen flauw idee hoe ik dit kan installeren?</div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67506"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.22;msg=67506">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67506_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67507"></a> <div class="windowbg2"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> Mudkip </h4> <ul class="reset smalltext" id="msg_67507_extra_info"> <li class="membergroup">Gast</li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67507"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67507#msg67507" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #23 Gepost op:</strong> 2007/01/27, 22:20:31 »</div> <div id="msg_67507_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67507">Ik ook niet...<br /><br />Google - installing tv card drivers on linux.<br /><a href="http://www.google.co.uk/search?hl=en&q=installing+tv+card+drivers+on+linux&meta=" class="bbc_link" target="_blank" rel="noopener noreferrer">http://www.google.co.uk/search?hl=en&q=installing+tv+card+drivers+on+linux&meta=</a><br /><br /><div class="quoteheader"><div class="topslice_quote">Citaat van: whisker</div></div><blockquote class="bbc_standard_quote">i know that knoppix has a tv card config. i dont know if u can do anything with that info but maybe u can run a knoppix live cd and see if ur tv card runs under that.<br />just something to think abouit from someone that knows nothing...</blockquote><div class="quotefooter"><div class="botslice_quote"></div></div>Knoppix:<br /><a href="ftp://ftp.knoppix.nl/pub/os/Linux/distr/knoppix/KNOPPIX_V5.1.0CD-2006-12-30-EN.iso" class="bbc_ftp new_win" target="_blank" rel="noopener noreferrer">ftp://ftp.knoppix.nl/pub/os/Linux/distr/knoppix/KNOPPIX_V5.1.0CD-2006-12-30-EN.iso</a></div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67507"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.23;msg=67507">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> <a id="msg67515"></a> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="post_wrapper"> <div class="poster"> <h4> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/useroff.gif" alt="Offline" /> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057" title="Bekijk profiel van Mescaline">Mescaline</a> </h4> <ul class="reset smalltext" id="msg_67515_extra_info"> <li class="postgroup">Lid</li> <li class="stars"></li> <li class="avatar"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=profile;u=1057"> <img class="avatar" src="https://forum.ubuntu-nl.org/avs/1057.gif" alt="" /> </a> </li> <li class="profile"> <ul> </ul> </li> </ul> </div> <div class="postarea"> <div class="flow_hidden"> <div class="keyinfo"> <div class="messageicon"> <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/post/xx.gif" alt="" /> </div> <h5 id="subject_67515"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.msg67515#msg67515" rel="nofollow">Welke tv kaarten ondersteunt linux?</a> </h5> <div class="smalltext">« <strong>Reactie #24 Gepost op:</strong> 2007/01/27, 22:46:13 »</div> <div id="msg_67515_quick_mod"></div> </div> </div> <div class="post"> <div class="inner" id="msg_67515">pfff hoop uitleg op die sites maar kom er niet echt verder mee <img src="https://forum.ubuntu-nl.org/Smileys/default/sad.gif" alt=":(" title="Sad" class="smiley" /></div> </div> </div> <div class="moderatorbar"> <div class="smalltext modified" id="modified_67515"> </div> <div class="smalltext reportlinks"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=reporttm;topic=6663.24;msg=67515">Meld dit bericht aan de moderator</a>   <img src="https://forum.ubuntu-nl.org/Themes/light-smf-theme/images/ip.gif" alt="" /> Gelogd </div> <div class="signature" id="msg_67515_signature">Ben geen computer-nerd.. weet niet super veel van pcs.<br />Maar ben er graag mee bezig <img src="https://forum.ubuntu-nl.org/Smileys/default/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div> </div> </div> <span class="botslice"><span></span></span> </div> <hr class="post_separator" /> </form> </div> <a id="lastPost"></a> <div class="pagesection"> <div class="pagelinks floatleft">Pagina's: [<strong>1</strong>] <a class="navPages" href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.25">2</a> <a class="navPages" href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.50">3</a>   <a href="#top"><strong>Omhoog</strong></a></div> <div class="nextlinks_bottom"></div> </div> <div class="navigate_section"> <ul> <li> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&"><span>Ubuntu Nederlands</span></a> » </li> <li> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&#c6"><span>Ondersteuning</span></a> » </li> <li> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&board=8.0"><span>Hardware en drivers</span></a> » </li> <li class="last"> <a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&topic=6663.0"><span>Welke tv kaarten ondersteunt linux?</span></a> </li> </ul> </div> <div id="moderationbuttons"></div> <div class="plainbox" id="display_jump_to"> </div> <br class="clear" /> <script type="text/javascript" src="https://forum.ubuntu-nl.org/Themes/default/scripts/topic.js"></script> <script type="text/javascript"><!-- // --><![CDATA[ if ('XMLHttpRequest' in window) { var oQuickModify = new QuickModify({ sScriptUrl: smf_scripturl, bShowModify: true, iTopicId: 6663, sTemplateBodyEdit: '\n\t\t\t\t\t\t\t\t<div id="quick_edit_body_container" style="width: 90%">\n\t\t\t\t\t\t\t\t\t<div id="error_box" style="padding: 4px;" class="error"><' + '/div>\n\t\t\t\t\t\t\t\t\t<textarea class="editor" name="message" rows="12" style="width: 100%; margin-bottom: 10px;" tabindex="1">%body%<' + '/textarea><br />\n\t\t\t\t\t\t\t\t\t<input type="hidden" name="f65c2efcfe5" value="e0e21be659d8814a53ea7cef36fd4c61" />\n\t\t\t\t\t\t\t\t\t<input type="hidden" name="topic" value="6663" />\n\t\t\t\t\t\t\t\t\t<input type="hidden" name="msg" value="%msg_id%" />\n\t\t\t\t\t\t\t\t\t<div class="righttext">\n\t\t\t\t\t\t\t\t\t\t<input type="submit" name="post" value="Opslaan" tabindex="2" onclick="return oQuickModify.modifySave(\'e0e21be659d8814a53ea7cef36fd4c61\', \'f65c2efcfe5\');" accesskey="s" class="button_submit" />  <input type="submit" name="cancel" value="Annuleren" tabindex="3" onclick="return oQuickModify.modifyCancel();" class="button_submit" />\n\t\t\t\t\t\t\t\t\t<' + '/div>\n\t\t\t\t\t\t\t\t<' + '/div>', sTemplateSubjectEdit: '<input type="text" style="width: 90%;" name="subject" value="%subject%" size="80" maxlength="80" tabindex="4" class="input_text" />', sTemplateBodyNormal: '%body%', sTemplateSubjectNormal: '<a hr'+'ef="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&'+'?topic=6663.msg%msg_id%#msg%msg_id%" rel="nofollow">%subject%<' + '/a>', sTemplateTopSubject: 'Topic: %subject%  (gelezen 9034 keer)', sErrorBorderStyle: '1px solid red' }); aJumpTo[aJumpTo.length] = new JumpTo({ sContainerId: "display_jump_to", sJumpToTemplate: "<label class=\"smalltext\" for=\"%select_id%\">Ga naar:<" + "/label> %dropdown_list%", iCurBoardId: 8, iCurBoardChildLevel: 0, sCurBoardName: "Hardware en drivers", sBoardChildLevelIndicator: "==", sBoardPrefix: "=> ", sCatSeparator: "-----------------------------", sCatPrefix: "", sGoButtonLabel: "ga" }); aIconLists[aIconLists.length] = new IconList({ sBackReference: "aIconLists[" + aIconLists.length + "]", sIconIdPrefix: "msg_icon_", sScriptUrl: smf_scripturl, bShowModify: true, iBoardId: 8, iTopicId: 6663, sSessionId: "e0e21be659d8814a53ea7cef36fd4c61", sSessionVar: "f65c2efcfe5", sLabelIconList: "Berichticoon", sBoxBackground: "transparent", sBoxBackgroundHover: "#ffffff", iBoxBorderWidthHover: 1, sBoxBorderColorHover: "#adadad" , sContainerBackground: "#ffffff", sContainerBorder: "1px solid #adadad", sItemBorder: "1px solid #ffffff", sItemBorderHover: "1px dotted gray", sItemBackground: "transparent", sItemBackgroundHover: "#e0e0f0" }); } // ]]></script> </div> </div></div></div> </div> <!-- Close main-wrapper --> <div id="footer_section"> <div class="container"> <dl class="footer-content"> <dt>Legal Disclaimer</dt> <dd><p>© 2010 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd.</p></dd> </dl> <dl class="footer-content"> <dt>Content license</dt> <dd> <ul class="footer-links"> <li class="footer-item"><a href="https://www.ubuntu-nl.org/node/100" class="footer-link">Images</a></li> <li class="footer-item"><a href="https://www.ubuntu-nl.org/node/101" class="footer-link">texts</a></li> </ul> </dd> </dl> <dl class="footer-content"> <dt>More Ubuntu</dt> <dd> <ul class="footer-links"> <li class="footer-item"><a href="http://ubuntu.com/getubuntu/download/" class="footer-link">Get Ubuntu</a></li> <li class="footer-item"><a href="http://brainstorm.ubuntu.com/" class="footer-link">Ubuntu Brainstorm</a></li> <li class="footer-item"><a href="https://ubuntuforums.org/" class="footer-link">Ubuntu Forums</a></li> <li class="footer-item"><a href="http://spreadubuntu.neomenlo.org/" class="footer-link">Spread Ubuntu</a></li> </ul> </dd> </dl> <dl class="footer-content"> <dt>Forum Links</dt> <dd> <ul class="footer-links"> <li class="footer-item"><a id="button_xhtml" href="http://validator.w3.org/check?uri=referer" target="_blank" class="footer-link new_win" title="Valid XHTML 1.0!"><span>XHTML</span></a></li> <li class="footer-item last"><a id="button_wap2" href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&wap2" class="footer-link new_win"><span>WAP2</span></a></li> </ul> </dd> </dl> <dl class="footer-content footer-content-right"> <dt>Thema instellingen</dt> <dd> <ul class="footer-links"> <li class=""><a href="javascript:void(0);" onclick="theme_switch('ubuntu');" class="footer-link">Ubuntu oranje</a></li> <li class=""><a href="javascript:void(0);" onclick="theme_switch('kubuntu')" class="footer-link">Kubuntu blauw</a></li> </ul> </dd> </dl> <div class="foot-note"> <ul class="reset"> <li class="copyright-theme"> <a href="https://code.launchpad.net/ubuntu-nl-artwork/light-smf-theme" title="https://code.launchpad.net/ubuntu-nl-artwork/light-smf-theme" target="_blank"> <b>Ubuntu thema door Ronnie en Yordi</b> </a> </li> <li class="copyright-smf"> <span class="smalltext" style="display: inline; visibility: visible; font-family: Verdana, Arial, sans-serif;"><a href="https://forum.ubuntu-nl.org/index.php?PHPSESSID=8pg4eetaeasneidhupl9540q00&action=credits" title="Simple Machines Forum" target="_blank" class="new_win">SMF 2.0.19</a> | <a href="https://www.simplemachines.org/about/smf/license.php" title="License" target="_blank" class="new_win">SMF © 2019</a>, <a href="https://www.simplemachines.org" title="Simple Machines" target="_blank" class="new_win">Simple Machines</a> </span> <p>Pagina opgebouwd in 0.06 seconden met 25 queries.</p></li> <li class="footer-bottom-hosting"> <span class="hosting-text">Hosting</span> <a alt="hcc! logo" href="http://www.hcc.nl/" title="logo hcc" id="logo-hcc"></a> <a alt="Bit logo" href="http://www.bit.nl/extern1/" title="logo bit" id="logo-bit"></a> </li> </ul> </div> <div style="clear:both;"></div> </div> </div> </body></html>