Would you recommend the product? yes | Price you paid?: None indicated | Rating: 10
|
Kernel (uname -r):
|
2.6.21.5
|
|
Distribution:
|
Slackware-Current
|
This card is absolutely perfect for what I want to use it for. Requires the ivtv drivers with firmware put in /lib/firmware.
Viewing works perfectly with "cat /dev/video0 | xine -".
Changing channels is awesome, you can use "ivtv-tune -f FREQUENCY" to manually tune in to a channel, and (like I did,) use a perl script to scan for channels:
#tvscan.pl
foreach $channel (0..1000) {
system('ivtv-tune -f ' . $channel);
}
and start the script using "perl tvscan.pl > channels.txt"
It's not a very advanced script but I couldn't find a way to catch the output of system() to check for a "(Signal Detected)" message. Open the file and remove the lines without "(Signal Detected)" to get a list of ranges for your channels.
To stream, start a client with "nc -l -p 5000 | xine -" and the server using "cat /dev/video0 | nc CLIENT-IP 5000".
|