Works great. Just make sure you have Video4Linux configured module in your kernel. Otherwise the correct tuner will not (and cannot) be selected. Of course you'll need the bt878 as a module too. Try this:
dmesg | grep tuner
You should get two lines LIKE these, at least:
Code:
tuner: chip found at addr 0xc2 i2c-bus bt878 #0 [sw]
tuner: type set to 2 (Philips NTSC (FI1236,FM1236 and compatibles)) by bt878 #0 [sw]
If no lines appear, try the following as root:
modprobe tuner
If that doesn't work then you likely have Video4Linux embedded into your kernel rather than as a module. Make it a module and restart! This fixed all of my problems.
--
In another case, you may have to edit /etc/modprobe.conf to have an entry like this:
options bttv card=34 tuner=2
The tuner value may vary for you, but the default (which seems to be 5) did not work for me.