hi,
i got PDP compiled yesterday with very little trouble on my suse81/duron1.2/miroPCTV... WONDERFULL !!!
i think i'm in love with pdp :) , i allways dreamed on zapping randomly on TV channels + randomly zooming on different locations, AWESOME !!! and when i use [pdp_motion_blur] you don't even (mostly) see that the channel is changed...
but, as i'm a freaking perfektionist i would like to get rid of that "noise" frame(s) when changing channels, so:
(i think this is a dumm question, but i wanted to be sure)
??? can i use 2 (or more) TVcards with pdp at the same time ???
so i can search the next channel on the 2nd card "offline" and then mixing it in, to avoid those "noise" frames...
cheers -andre ps. can i turn the message sending "pdp_v4l: tuner frequency..." OFF ?
I read:
??? can i use 2 (or more) TVcards with pdp at the same time ???
no problem just create a 2nd [pdp_v4l] object and send it a [open /dev/video1 ( or 2 3 4 5.. .n message
ps. can i turn the message sending "pdp_v4l: tuner frequency..." OFF ?
in modules/pdp_v4l.c in the function static void pdp_v4l_freq(..) comment out the line else {post("pdp_v4l: tuner frequency: %f MHz", f / 16.0f);}
HTH
x
On Tuesday 01 April 2003 17:59, CK wrote:
I read:
??? can i use 2 (or more) TVcards with pdp at the same time ???
no problem just create a 2nd [pdp_v4l] object and send it a [open /dev/video1 ( or 2 3 4 5.. .n message
i've tested it with a bttv card and a webcam, and it seems to work fine.
ps. can i turn the message sending "pdp_v4l: tuner frequency..." OFF ?
in modules/pdp_v4l.c in the function static void pdp_v4l_freq(..) comment out the line else {post("pdp_v4l: tuner frequency: %f MHz", f / 16.0f);}
ah, yes, that's an annoying message. i've commented it out for the next release..
thnx CK,
gotta get a second TVcard tomorrow...
does any1 have any tips on good/cheap TVtuners to buy in germany ? (haven't watched the market for years)
cheers -andre ps. can i send the pdp window (fullscreen) to my svhs output of my gforce2mx with out loosing any performance, but i think i buy a scanconverter (with zoom) anyway...
On Tuesday 01 April 2003 17:59, CK wrote:
I read:
??? can i use 2 (or more) TVcards with pdp at the same time ???
no problem just create a 2nd [pdp_v4l] object and send it a [open /dev/video1 ( or 2 3 4 5.. .n message
ps. can i turn the message sending "pdp_v4l: tuner frequency..." OFF ?
in modules/pdp_v4l.c in the function static void pdp_v4l_freq(..) comment out the line else {post("pdp_v4l: tuner frequency: %f MHz", f / 16.0f);}
HTH
x
hi,
i got now 2 TVcards installed in my suse8.1
and i can't get them to work at the same time
i asssume that "/etc/modules.conf" is the only file i have to edit to get the cards to work, so:
options i2c-core 12c_debug=1 alias char-major-89 i2c-dev options bttv card=33 pll=1 options tuner type=5 alias char-major-81-0 bttv alias char-major-81-1 off alias char-major-81-2 off alias char-major-81-3 off
and
options i2c-core 12c_debug=1 alias char-major-89 i2c-dev options bttv card=1 pll=1 options tuner type=0 alias char-major-81-0 bttv alias char-major-81-1 off alias char-major-81-2 off alias char-major-81-3 off
so,
options i2c-core 12c_debug=1 alias char-major-89 i2c-dev options bttv card=33,1 pll=1,1 options tuner type=5,0 alias char-major-81-0 bttv alias char-major-81-1 bttv alias char-major-81-2 off alias char-major-81-3 off
but with this i get: "tuner.o : too many values for type"
i'm trying to solve this problem like 2 days allready and can't find a solution even from googles group search...
so i was hoping here's some1 with 2 bttv tuner cards installed and could help me a little...
thnx -andre
On Tuesday 01 April 2003 18:27, Andre Schmidt wrote:
thnx CK,
gotta get a second TVcard tomorrow...
does any1 have any tips on good/cheap TVtuners to buy in germany ? (haven't watched the market for years)
cheers -andre ps. can i send the pdp window (fullscreen) to my svhs output of my gforce2mx with out loosing any performance, but i think i buy a scanconverter (with zoom) anyway...
On Tuesday 01 April 2003 17:59, CK wrote:
I read:
??? can i use 2 (or more) TVcards with pdp at the same time ???
no problem just create a 2nd [pdp_v4l] object and send it a [open /dev/video1 ( or 2 3 4 5.. .n message
ps. can i turn the message sending "pdp_v4l: tuner frequency..." OFF ?
in modules/pdp_v4l.c in the function static void pdp_v4l_freq(..) comment out the line else {post("pdp_v4l: tuner frequency: %f MHz", f / 16.0f);}
HTH
x
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
hi,
I never tried with two different tuners, just tv tuner && webcam , 2 webcams etc .... but I remember when I was still using the oss virmidi driver to route stuff back and forth I copied virmidi.o to virmidi1.o inserted both et voila I got more internal midi ports to route, might work aswell with tuner.o (untested)
cp tuner.o tuner1.o
insmod tuner.o <args to tell it to use tunertype> insmod tuner1.o <args to use the other tuner type>
that's an ugly hack /me knows, but then again it might work.
regards,
x
hi CK,
1000x thnx for the tip... it seems to work :)
i copied "tuner.o" to "tuner1.o"
then "insmod tuner1.o"
then added: "options tuner1 type=0" to modules.conf
options i2c-core 12c_debug=1 alias char-major-89 i2c-dev options bttv card=33,1 pll=1,0 options tuner type=5 options tuner1 type=0 alias char-major-81-0 bttv alias char-major-81-1 bttv alias char-major-81-2 off alias char-major-81-3 off
and now i can use both tuners at the same time in pdp, JIPPIIII..
thanx again ! -andre
On Sunday 06 April 2003 15:06, CK wrote:
hi,
I never tried with two different tuners, just tv tuner && webcam , 2 webcams etc .... but I remember when I was still using the oss virmidi driver to route stuff back and forth I copied virmidi.o to virmidi1.o inserted both et voila I got more internal midi ports to route, might work aswell with tuner.o (untested)
cp tuner.o tuner1.o
insmod tuner.o <args to tell it to use tunertype> insmod tuner1.o <args to use the other tuner type>
that's an ugly hack /me knows, but then again it might work.
regards,
x