LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 05-15-2005, 11:00 AM   #1
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Rep: Reputation: 30
Ivtv


How do you use "ptune.pl" to change channels with the IVTV TV Card driver? When I run it I get:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune.pl
Can't locate Video/Frequencies.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ./ptune.pl line 8.
BEGIN failed--compilation aborted at ./ptune.pl line 8.
debian:~/ivtv-0.2.0-rc3j/utils#
 
Old 05-15-2005, 01:22 PM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Re: Ivtv

Quote:
Originally posted by WolfCub
How do you use "ptune.pl" to change channels with the IVTV TV Card driver? When I run it I get:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune.pl
Can't locate Video/Frequencies.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ./ptune.pl line 8.
BEGIN failed--compilation aborted at ./ptune.pl line 8.
debian:~/ivtv-0.2.0-rc3j/utils#
You need to install the perl module I show below and you may want to think about installing apt-file so you can search for these problems when they occur.

Code:
>$ apt-file search Frequencies.pm
libvideo-capture-v4l-perl: usr/lib/perl5/Video/Frequencies.pm
libvideo-capture-v4l-perl: usr/lib/perl5/Video/Frequencies.pm
 
Old 05-15-2005, 01:40 PM   #3
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
Do I just copy paste this into ptune.pl???

libvideo-capture-v4l-perl: usr/lib/perl5/Video/Frequencies.pm
libvideo-capture-v4l-perl: usr/lib/perl5/Video/Frequencies.pm
 
Old 05-15-2005, 01:58 PM   #4
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by WolfCub
Do I just copy paste this into ptune.pl???

libvideo-capture-v4l-perl: usr/lib/perl5/Video/Frequencies.pm
libvideo-capture-v4l-perl: usr/lib/perl5/Video/Frequencies.pm
No you would apt-get install libvideo-capture-v4l-perl which will install the package that contains the needed file then it will be available when you run your command for the ptune.pl.
 
Old 05-15-2005, 02:06 PM   #5
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
Ok I did that now I get:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune.pl
Can't locate Video/ivtv.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ./ptune.pl line 9.
BEGIN failed--compilation aborted at ./ptune.pl line 9.
debian:~/ivtv-0.2.0-rc3j/utils#
 
Old 05-15-2005, 02:14 PM   #6
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by WolfCub
Ok I did that now I get:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune.pl
Can't locate Video/ivtv.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ./ptune.pl line 9.
BEGIN failed--compilation aborted at ./ptune.pl line 9.
debian:~/ivtv-0.2.0-rc3j/utils#
Well now you need.

Code:
>$ apt-file search ivtv.pm
libvideo-ivtv-perl: usr/lib/perl5/Video/ivtv.pm
And you really should install apt-file and do the searching yourself. After installing the package run apt-file update as root then use the search as either root or normal user to find the package(s) that contain the file you are getting the error from.
 
Old 05-15-2005, 02:36 PM   #7
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
Ok, now I get:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune.pl
Can't locate Config/IniFiles.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ./ptune.pl line 10.
BEGIN failed--compilation aborted at ./ptune.pl line 10.
debian:~/ivtv-0.2.0-rc3j/utils#


How do I check that with apt-file so I can do the rest myself? I've never used it. Thanks.
 
Old 05-15-2005, 02:40 PM   #8
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
Update: I figured it out, thanks for telling me about it, it'll probably help me alot in the future. I'm going to try to use it now, I'll probably be posting again
 
Old 05-15-2005, 02:47 PM   #9
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
Ok, how do you use it? Can you give me an example for oh, say, channel 50? And can I change channels while viewing TV? Thanks!
 
Old 05-15-2005, 03:04 PM   #10
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by WolfCub
Ok, how do you use it? Can you give me an example for oh, say, channel 50? And can I change channels while viewing TV? Thanks!
Well for the ptune I am not sure have you checked the Docs that should have cone with the ivtv package? For using xawtv or similar programs there is usually an option in the menus to change the channel.
 
Old 05-15-2005, 07:32 PM   #11
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
I got ptune.pl to change channels. However, ptune-ui gives this error:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune-ui.pl
Video::Frequencies version 0.03 required--this is only version 0.01 at ./ptune-ui.pl line 9.
BEGIN failed--compilation aborted at ./ptune-ui.pl line 9.
debian:~/ivtv-0.2.0-rc3j/utils#


Please help.
 
Old 05-15-2005, 07:45 PM   #12
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
.ivtvrc doesn't contain much information about channels, could you paste your config on here for me to make mine like it, maybe I'm just missing some data.
 
Old 05-15-2005, 08:02 PM   #13
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by WolfCub
I got ptune.pl to change channels. However, ptune-ui gives this error:

debian:~/ivtv-0.2.0-rc3j/utils# ./ptune-ui.pl
Video::Frequencies version 0.03 required--this is only version 0.01 at ./ptune-ui.pl line 9.
BEGIN failed--compilation aborted at ./ptune-ui.pl line 9.
debian:~/ivtv-0.2.0-rc3j/utils#


Please help.
I'm not sure about that one the libvideo-capture-v4l-perl that you have installed is at the newest version according to the CPAN site. Perhaps you can check the ivtv site where you got it to see where they are getting it from.
 
Old 05-15-2005, 08:05 PM   #14
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by WolfCub
.ivtvrc doesn't contain much information about channels, could you paste your config on here for me to make mine like it, maybe I'm just missing some data.
I do not use the ivtv for my card but usually the .file is just a simple config file so if in this case you are trying to figure out the channels simply duplicate an existing entry and change the title and channel number for a new entry. If you were to post yours and tell me what you need to do I can try to figure it out.
 
Old 05-15-2005, 08:10 PM   #15
WolfCub
Member
 
Registered: Nov 2003
Location: Canada
Distribution: Debian
Posts: 175

Original Poster
Rep: Reputation: 30
Ok I managed to set up the driver and now with ptune i can change to any channel. However, KDETV locks up when I try to run the Channel Configuration Wizard and when I try to choose my video device, its using my NVidia video card and of course it should be using the PVR 350. Any experience with KDETV? Do you know if they have a forum or IRC channel?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
IVTV drivers Jake_da_Snake Linux - Hardware 10 06-28-2005 11:54 PM
FC3 ivtv snt Fedora 0 02-11-2005 02:44 PM
modprobe ivtv Lobais Linux - Software 3 12-29-2004 06:35 AM
ivtv driver j0han Linux - Software 4 12-01-2004 01:45 AM
ivtv driver j0han Linux - Hardware 3 11-24-2004 12:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 11:04 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration