webvcrplus-help Mailing List for WebVCR+ (Page 3)
Status: Beta
Brought to you by:
chuckw
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
(16) |
Oct
(9) |
Nov
|
Dec
(14) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(62) |
Feb
(4) |
Mar
(7) |
Apr
(15) |
May
(16) |
Jun
(14) |
Jul
(30) |
Aug
(9) |
Sep
|
Oct
(3) |
Nov
|
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <gph...@ka...> - 2003-06-24 05:23:24
|
I looked at the code, and requests to record a program, that has a conflict, or just ignored. How do people think this should be handled? Should an intermidiary page come up and say "You have a conflict." Should the record go through and "Currently Scheduled Programs" could mark the conflict in red. Any other ideas? thanks chad |
|
From: <gph...@ka...> - 2003-06-24 05:21:34
|
>None of the trek episodes would
>record, even when selecting or force recording them from the listings.
>When I checked the record.output, this is one of the recordings
I have a possiblity on this bug. When you do a record it calls a function
called record in lib/functions.php. The function first checks to see if
you can record this show, checks for conflicts etc. It also checks to see
if you have program set to record that has the same name and subtitle.
$result = $sql->query("SELECT * FROM program WHERE
record='1' ".
"AND pname='".addslashes($pname)."'
AND subtitle='".addslashes($sub).
"' AND subtitle != ''");
$num_rows = $sql->num_rows($result);
Your Star Trek epesodes should all of the same name. They SHOULD have
different subtitles, but that is not always the case. If they all had a
subtitle of say "Star Trek Marathon" then only the first one would record.
Webvcr would think the others where dupes and not mark them for record.
I know this happens with South Park. All of the recent episodes of South
Park have the EXACT same subtile "Story of four boys from Colorado". That
means webvcr only lets me record one of them a week.
So is this a feature or is it a bug?
thanks
chad
|
|
From: Chuck W. <ch...@qu...> - 2003-06-22 07:43:09
|
> Chuck, is it ok if I make that change in CVS and let everyone test it > out? Yeah, definitely looks like a relational constraint problem. Go ahead and make the change, but try to fix the problem with constraints on the table itself rather than logic in the code (as much as that's even possible in this case). -Chuck -- Quantum Linux Laboratories - ACCELERATING Business with Linux Technology * Education | -=^ Ad Astra Per Aspera ^=- * Integration | http://www.quantumlinux.com * Support | ch...@qu... |
|
From: <gph...@ka...> - 2003-06-21 04:52:28
|
> AMEN! I have that same problem _every single stinking time_ the > listings get updated. Then I have to go through to the Favorites page and re-set the channel for all my Favorites. > I have a theory on this. The program keys everything off of a stations sid. The sid is the primary key of the station table. It is just an auto increment field. So channel 12 may have an sid of say 10. The sid not the channel is reference in all other tables. Whenever you run listing.pl the station table is deleted and and re-populated. If you insert the exact same stations then no problem. Here is what they may look like sid channel station name 1 3 ABC 2 4 CBS 3 9 NBC 4 12 FOX Your favorite is on FOX and the favorite table referecense sid 4. Now lets say you get a new channel. When you re-run listings.pl the stations table will be re-loaded. This is where the problem comes in. sid channel station name 1 3 ABC 2 4 CBS 3 9 NBC 4 10 Disney 5 12 FOX The sid for FOX has changed, but none of the references in the other tables have been changed, now they all point to the wrong channel. The favorites table now thinks your program is on Disney instead of Fox. favorites table now thinks your program is on Disney instead of Fox. I believe a quick fix would be to make the sid and channel fields contain the same value. This would require a database change. Changing the sid field in station to an int(11) instead of an auto-increment. Channels should not be duplicated so that should not be a problem. Chuck, is it ok if I make that change in CVS and let everyone test it out? Chuck, is it ok if I make that change in CVS and let everyone test it out? |
|
From: Bradley A. <st...@tu...> - 2003-06-12 12:06:27
|
I know we have discussed it before, but never with technical details. I had several programs scheduled for the next three days. webvcrplus came along and whacked about 2/3rds of the shows I had scheduled. I went in and tried to re-add them, and they don't show (as if the time slot is still occupied). This happened to me a few weeks back, and I ended up noticing about 5 minutes before something I wanted to record started. I ended up missing it. Is it possible to clear that timeslot? It appears that while nothing shows up in that timeslot on the web page, the database has that timeslot blocked out. If I can get a fix for it before midnight tomight (EDT) I would appreciate it, since one of the shows that got whacked was part 1 of a 2 part episode. Thanks, -- --Brad ============================================================================ Bradley M. Alexander | gTLD SysAdmin, Security Engineer | storm [at] tux.org Debian/GNU Linux Developer | storm [at] debian.org ============================================================================ Key fingerprints: DSA 0x54434E65: 37F6 BCA6 621D 920C E02E E3C8 73B2 C019 5443 4E65 RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A C8 9C F0 93 75 A0 01 34 ============================================================================ "We're not acting. We really are like this." --Yakko Warner |
|
From: Bradley A. <st...@tu...> - 2003-06-11 15:25:01
|
On Wed, 2003-06-11 at 03:56, Chuck Wolber wrote: > Hmmm, interesting concept. Would it be safe to describe that as some sort > of a listings import/export utility? I'd bet the code to do that is > already there in listings.pl. We'd just have to rip out that part to parse > an existing XML document. Exactly. As I was discussing with Lance Simmons, a listings download on my 56k connection takes about an hour and a half. At work, I have multiple OC12s, so the same download would take 3 or 4 seconds. So I was thinking about not only the listings.pl import stuff (which, I agree, you could probably rip out the code and modularize it), but also on the settings page, you could add a toggle to _either_ import or download, so you don't get a slow download stepping on your freshly downloaded listings. > If we go this route, I'd prefer that the import functionality be > abstracted to a module and have listings.pl and (the future) import.pl > reference it. My reasoning is that I don't want to add any more complexity > to listings.pl, but at the same time, I don't want to maintain two methods > of importing XML data to the database. Agreed. Having common code would definitely be the route to go. > -Chuck -- --Brad ============================================================================ Bradley M. Alexander | gTLD SysAdmin, Security Engineer | storm [at] tux.org Debian/GNU Linux Developer | storm [at] debian.org ============================================================================ Key fingerprints: DSA 0x54434E65: 37F6 BCA6 621D 920C E02E E3C8 73B2 C019 5443 4E65 RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A C8 9C F0 93 75 A0 01 34 ============================================================================ Splash one! Sierra Hotel, Falcon-1...That Fulcrum driver is now a smokin' hole in the ground..." |
|
From: Chuck W. <ch...@qu...> - 2003-06-11 07:56:26
|
> In your copious free time =), if you get a chance, I thought of a > feature I'd like to see included. Since I have 56k at home and multiple > OC12s at work, I have devised a system were I can upgrade my Debian > boxes by running an apt-get update, printing the URLs to a file, then > grabbing that file at work and dumping the actual debs onto my laptop to > take home. > > Could an approach like this be taken with webvcrplus? I have xmltv on my > box at work, so if I could download the listings.xml at work then have a > page to import it into webvcrplus, that would work well for me. Hmmm, interesting concept. Would it be safe to describe that as some sort of a listings import/export utility? I'd bet the code to do that is already there in listings.pl. We'd just have to rip out that part to parse an existing XML document. If we go this route, I'd prefer that the import functionality be abstracted to a module and have listings.pl and (the future) import.pl reference it. My reasoning is that I don't want to add any more complexity to listings.pl, but at the same time, I don't want to maintain two methods of importing XML data to the database. -Chuck -- Quantum Linux Laboratories - ACCELERATING Business with Linux Technology * Education | -=^ Ad Astra Per Aspera ^=- * Integration | http://www.quantumlinux.com * Support | ch...@qu... |
|
From: Bradley A. <st...@tu...> - 2003-06-10 04:35:04
|
Chuck, In your copious free time =), if you get a chance, I thought of a feature I'd like to see included. Since I have 56k at home and multiple OC12s at work, I have devised a system were I can upgrade my Debian boxes by running an apt-get update, printing the URLs to a file, then grabbing that file at work and dumping the actual debs onto my laptop to take home. Could an approach like this be taken with webvcrplus? I have xmltv on my box at work, so if I could download the listings.xml at work then have a page to import it into webvcrplus, that would work well for me. Thoughts? -- --Brad ============================================================================ Bradley M. Alexander | gTLD SysAdmin, Security Engineer | storm [at] tux.org Debian/GNU Linux Developer | storm [at] debian.org ============================================================================ Key fingerprints: DSA 0x54434E65: 37F6 BCA6 621D 920C E02E E3C8 73B2 C019 5443 4E65 RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A C8 9C F0 93 75 A0 01 34 ============================================================================ Only a government that is afraid of it's citizens try to control them. |
|
From: Bradley A. <st...@tu...> - 2003-05-27 03:45:26
|
On Mon, 2003-05-26 at 23:08, Chuck Wolber wrote: > > > No, the message was not ignored. > > > > Is this a problem everyone is having, or only people who use mencoder? > > Thanks for your work on webvcr+. It's a great program. > > I'm not sure to be honest. I only use ffmpegrec from the nvrec package > because it's the only recorder out there (to my knowledge) that correctly > keeps audio and video in sync (All of the other recorders let the audio > and video drift apart). I haven't seen the problem you're describing. I haven't noticed that problem with mencoder...Then again, I postprocess it (commercial removal, resizing to 700MB) after the fact and burn it to CD... > -Chuck -- --Brad ============================================================================ Bradley M. Alexander | gTLD SysAdmin, Security Engineer | storm [at] tux.org Debian/GNU Linux Developer | storm [at] debian.org ============================================================================ Key fingerprints: DSA 0x54434E65: 37F6 BCA6 621D 920C E02E E3C8 73B2 C019 5443 4E65 RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A C8 9C F0 93 75 A0 01 34 ============================================================================ If you don't know your rights, you don't have any. |
|
From: Chuck W. <ch...@qu...> - 2003-05-27 03:08:28
|
> > No, the message was not ignored. > > Is this a problem everyone is having, or only people who use mencoder? > Thanks for your work on webvcr+. It's a great program. I'm not sure to be honest. I only use ffmpegrec from the nvrec package because it's the only recorder out there (to my knowledge) that correctly keeps audio and video in sync (All of the other recorders let the audio and video drift apart). I haven't seen the problem you're describing. -Chuck -- Quantum Linux Laboratories - ACCELERATING Business with Linux Technology * Education | -=^ Ad Astra Per Aspera ^=- * Integration | http://www.quantumlinux.com * Support | ch...@qu... |
|
From: Bradley A. <st...@tu...> - 2003-05-27 02:52:16
|
On Mon, 2003-05-26 at 21:17, Lance Simmons wrote: > On Mon, May 26, 2003 at 07:25:59PM -0400, Bradley Alexander wrote: > > > > I had another issue today. > > [...] > > Error: suboption 'channel' of 'tv' must have a parameter! > > AMEN! I have that same problem _every single stinking time_ the > listings get updated. Then I have to go through to the Favorites page > and re-set the channel for all my Favorites. The interesting thing, in my case, is that all of my favorites are still set to defaults (any channel/everyday/anytime/all episodes), and it still makes no difference. The other thing is that I manually selected record from the listings (now on tv) page, and it didn't highlight them, even when I selected Force Record. I'm wondering if it is something to do with xmltv...I'm running a Debian/sid box with xmltv 0.5.10-2 and webvcrplus 0.9.2.7. > I sent a note to this list on May 3 describing this problem, which has > continued unabated. No one responded, so I assumed I was alone. I must have missed that one, since I was out of town and reading mail remotely through mutt. > But I'm not alone. More than one of us is suffering from this! Does > anyone have an idea what the problem might be? I'm going out of town > soon for a couple of weeks, and it would be nice to have my scheduled > recordings when I get back. True. and dealing with the conflict resolution would be very nice. -- --Brad ============================================================================ Bradley M. Alexander | gTLD SysAdmin, Security Engineer | storm [at] tux.org Debian/GNU Linux Developer | storm [at] debian.org ============================================================================ Key fingerprints: DSA 0x54434E65: 37F6 BCA6 621D 920C E02E E3C8 73B2 C019 5443 4E65 RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A C8 9C F0 93 75 A0 01 34 ============================================================================ Real Men don't make backups. They upload it via ftp and let the world mirror it. -- Linus Torvalds |
|
From: Chuck W. <ch...@qu...> - 2003-05-27 02:49:17
|
> AMEN! I have that same problem _every single stinking time_ the > listings get updated. Then I have to go through to the Favorites page > and re-set the channel for all my Favorites. > > I sent a note to this list on May 3 describing this problem, which has > continued unabated. No one responded, so I assumed I was alone. > > But I'm not alone. More than one of us is suffering from this! Does > anyone have an idea what the problem might be? I'm going out of town > soon for a couple of weeks, and it would be nice to have my scheduled > recordings when I get back. No, the message was not ignored. This is a known issue that should be going away in the next release. Right now, we're racing towards the deadline on our book so I'm probably going to be a bit tardy on the updates. If anyone wants to submit a patch, it would hurry things along. -Chuck -- Quantum Linux Laboratories - ACCELERATING Business with Linux Technology * Education | -=^ Ad Astra Per Aspera ^=- * Integration | http://www.quantumlinux.com * Support | ch...@qu... |
|
From: Lance S. <la...@ls...> - 2003-05-27 02:42:31
|
On Mon, May 26, 2003 at 07:34:38PM -0700, Chuck Wolber wrote: > > No one responded, so I assumed I was alone. > > No, the message was not ignored. Is this a problem everyone is having, or only people who use mencoder? Thanks for your work on webvcr+. It's a great program. -- Lance Simmons Irving, Texas |
|
From: Lance S. <la...@ls...> - 2003-05-27 01:18:14
|
On Mon, May 26, 2003 at 07:25:59PM -0400, Bradley Alexander wrote: > > I had another issue today. > [...] > Error: suboption 'channel' of 'tv' must have a parameter! AMEN! I have that same problem _every single stinking time_ the listings get updated. Then I have to go through to the Favorites page and re-set the channel for all my Favorites. I sent a note to this list on May 3 describing this problem, which has continued unabated. No one responded, so I assumed I was alone. But I'm not alone. More than one of us is suffering from this! Does anyone have an idea what the problem might be? I'm going out of town soon for a couple of weeks, and it would be nice to have my scheduled recordings when I get back. -- Lance Simmons Irving, Texas |
|
From: Bradley A. <st...@tu...> - 2003-05-26 23:26:13
|
I was wondering about error messages and so forth with recording. I've noticed several cases where programs I have scheduled have not been recorded. In one case, I went through the "All Scheduled Movies" page, which displays movies by channel by date. What wound up happening was that I scheduled one movie to record, say, 7pm to 9pm for example. A couple of days later, I noticed another movie which was scheduled for, say, 6:30 to 9 on the same day. When I clicked on the second one, there was no notification of the conflict, and whats more, the index page had removed _both_ movies from the recording schedule. Is there some way that the program can at least notify of a conflict in no uncertain terms? A conflict resolution page would be nice, but not necessary. I had another issue today. I'm not sure exactly what happened, but Star Trek is one of my favorites. Today, SciFi had a Trek marathon, however, I had already recorded and burned several of the episodes. So I unselected those episodes, but not the ones I didn't have. In the meantime, I got an xmltv download, and had to unselect them again. Well, today, the day of the marathon, I noticed that there was nothing scheduled to record till tomorrow...None of the trek episodes would record, even when selecting or force recording them from the listings. When I checked the record.output, this is one of the recordings Found a program to record Star Trek - The Omega Glory runs for seconds en starts @ 2003-05-26 13:00:00 recording with mencoder -tv on:driver=v4l:width=352:height=240:input=0:device=/dev/video0:norm=NTSC:chanlist=us-cable:channel=#STATION# -ovc lavc -lavcopts vcodec=#FFMPEGCODEC#:vbitrate=#VBITRATE# -oac mp3lame -lameopts cbr:vol=6:br=#ABITRATE# -endpos #TIME# -o "#OUTPUT#", channel changed with none ...snip... Reading /etc/mplayer/mencoder_codecs.conf: 50 audio & 136 video codecs File not found: 'frameno.avi' Reading config file /root/.mplayer/mencoder: No such file or directory Error: suboption 'channel' of 'tv' must have a parameter! Exiting... (error parsing cmdline) Recording ended at Mon May 26 13:00:03 EDT 2003 Found a program to record Program /usr/local/video/webvcr/Star Trek - The Omega Glory already in library, skipping Can someone tell me what I'm missing? Thanks, -- --Brad ============================================================================ Bradley M. Alexander | gTLD SysAdmin, Security Engineer | storm [at] tux.org Debian/GNU Linux Developer | storm [at] debian.org ============================================================================ Key fingerprints: DSA 0x54434E65: 37F6 BCA6 621D 920C E02E E3C8 73B2 C019 5443 4E65 RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A C8 9C F0 93 75 A0 01 34 ============================================================================ Don't look conspicuous, it draws fire. This is why aircraft carriers are called "bomb magnets." --Murphy's Laws of Combat |
|
From: Chris <chr...@mc...> - 2003-05-13 02:23:52
|
I'm having a slight problem getting webvcr+ to record. I can record from the command line using the following: $ffmpeg /tmp/example.avi $ffmpeg /tmp/example.mpeg both of those options records whatever channel xawtv is set to. If this works from the command line - webvcr+ should record; however, it does not. When I select a program to record which is either already on or upcoming, it shows up as being schedule but then nothing happens. Obviously, there is something I'm missing here. Does anyone else use ffmpeg to do their capturing? Here are my settings Video Recorder Configuration Channel Changing Program - xawtv Recording Quality (max 100) - 80 Key frames (max 30)- 29.97 Audio Bitrate - 64 Recording Source - television Norm - NTSC(USA) Codec - MPEG1 Bitrate - 400 Crispness - ? Recording Program Presets - Custom Recording Program - ffmpeg -r #KEYFRAMES# -s 352x240 -b #VBITRATE# -ab #ABITRATE# -t #TIME# -vcodec #FFMPEGCODEC# -y #OUTPUT# -i #SOURCE# I'm assuming my Custom line is totally incorrect. I've done a bunch of googling but haven't really found anything. Also, does anyone know of a GUI for schedule recording that isn't web-based. I've toyed with MythTV but it's overkill for me. I don't need all the features. I am looking for something less bloated - webvcr+ fits that but could also do without the web interface. thanks Chris |
|
From: Lance S. <la...@ls...> - 2003-05-07 22:48:51
|
On Tue, May 06, 2003 at 11:52:29PM +0000, Chris wrote: > I can capture TV from the command line using ffmpeg alone making an avi > file or mpg format. i can get a capture just by doing ffmpeg > /tmp/sample.mpg > > Now when i fill out the video settings in webvcrplus i choose the FFMPEG > codec and choose mencoder for the recording program. When I go to > schedule a recording, nothing happens at the time it should. Now are > there addition settings i need to set with mencoder or ffmpeg??? > > What are some common setups people are using to record? I am curious to > how everyone is setting up the recording settings. I'm using mencoder. The command line I use is: mencoder -include ~/.mencoder-webvcr -tv on:driver=v4l:input=0:channel="#STATION#" -ovc lavc -lavcopts vcodec=mpeg4 -oac mp3lame -lameopts abr:br=128 -endpos "#TIME#" -o "#OUTPUT#".avi the file ~/.mencoder-webvcr contains these lines that set mencoder options: lavcopts=vbitrate=2500:keyint=250 tv=driver=v4l:adevice=/dev/dsp2:device=/dev/video0 tv=chanlist=us-cable:norm=NTSC:width=640:height=480 tv=buffersize=500 vop=crop=624:476:8:4,pp=lb I'm pretty happy with the results. -- Lance Simmons Irving, Texas I have a switch in my apartment that doesn't do anything. Every once in a while I turn it on and off. On and off. On and off. One day I got a call from a woman in France who said "Cut it out!" -- Steven Wright |
|
From: Ian T. <ia...@ih...> - 2003-05-07 20:24:39
|
When I click on a program link in Galeon, it pops up a blank window. It works fine with Mozilla v. 1.2.1. I have tried activating pop-ups in the Galeon set up, but that doesn't help. Any ideas on why this would be? -- Ian Truelsen Email: ia...@ih... AIM: ihtruelsen Homepage: http://www.ihtruelsen.dyndns.org |
|
From: <gph...@ka...> - 2003-05-07 14:52:46
|
>when i run ./listings.pl >[root@chrisrickert webvcrplus]# ./listings.pl >Gettings listings for XMLTV >Running xmltv ripper for webvcr+ ...... >Couldn't open /home/chris/webvcr/data/listings.xml: >No such file or directory at ./listings.pl line 81 >do i have to manually create the data and listings.xml file. I've >noticed the script makes the data file automatically but the >listings.xml file isn't created. Any advice on this one? listings.xml should be created automatically when you run listsings.pl. Could you have a file permissions problem? What happens when you do touch /home/chris/webvcr/data/listings.xml thanks chad |
|
From: Chris <chr...@mc...> - 2003-05-07 04:49:52
|
I can capture TV from the command line using ffmpeg alone making an avi file or mpg format. i can get a capture just by doing ffmpeg /tmp/sample.mpg Now when i fill out the video settings in webvcrplus i choose the FFMPEG codec and choose mencoder for the recording program. When I go to schedule a recording, nothing happens at the time it should. Now are there addition settings i need to set with mencoder or ffmpeg??? What are some common setups people are using to record? I am curious to how everyone is setting up the recording settings. chris |
|
From: Chris <chr...@mc...> - 2003-05-05 04:35:41
|
when i run ./listings.pl [root@chrisrickert webvcrplus]# ./listings.pl Gettings listings for XMLTV Running xmltv ripper for webvcr+ ...... Couldn't open /home/chris/webvcr/data/listings.xml: No such file or directory at ./listings.pl line 81 do i have to manually create the data and listings.xml file. I've noticed the script makes the data file automatically but the listings.xml file isn't created. Any advice on this one? chris |
|
From: Lance S. <la...@ls...> - 2003-05-05 02:41:46
|
On Sun, May 04, 2003 at 09:06:24PM +0000, Chris wrote:
>
> I can run ./setup.pl with no probems
>
> root@chrisrickert webvcrplus]# ./setup.pl
> Welcome to WebVCR+! Press enter for default values
[...]
> Scheduling recording and listings ...
> Changing permissions ...
>
> [root@chrisrickert webvcrplus]# ./listings.pl
> Gettings listings for XMLTV
> DBI connect('database=;host=','',...) failed: Access denied for user:
> 'root@localhost' (Using password: NO) at ./listings.pl line 17
> [root@chrisrickert webvcrplus]#
>
> Why am i getting this Access denied.....(Using password: NO)? I gave my
> root password up there ./setup.pl
Did you go to your web page and finish configuring your settings before
running listings.pl?
--
.~.
/V\ Lance Simmons
/( )\ Irving, Texas
^^-^^
|
|
From: Chris <chr...@mc...> - 2003-05-05 02:04:02
|
I've got a fresh Mandrake 9.1 install with the newest Mysql rpms.
I can run ./setup.pl with no probems
root@chrisrickert webvcrplus]# ./setup.pl
Welcome to WebVCR+! Press enter for default values
Make sure you are ROOT before running this script!
Enter MySQL root password (default: none):XXXXXXXXX
Enter MySQL hostname (default:localhost):
Enter MySQL database name (default: tv):
Enter MySQL username (default: tvuser):
Enter MySQL password (default: dolphin):
Enter the user the webserver runs as (default: apache):chris
Enter the group the webserver runs as (default: nobody):chris
Enter the user who should own the recorded videos. This
would most likely be the username you generally login as
(default: apache):chris
Enter the group the video files should belong to. If you
wish to have multiple users accessing videos, they should
all belong to this group (default: nobody):chris
Enter the location of the ffmpeg program (default:
/usr/local/bin/ffmpeg):
Enter location of crontab (default: /var/spool/cron/root ):
How many times a week should the listings be updated? (default: 1):
creating tv.station ..
creating tv.program ..
creating tv.favorites ..
creating tv.chanprog ..
creating tv.codec ..
populating tv.codec ..
creating tv.codecconfig ..
populating tv.codecconfig ..
creating tv.config ..
populating tv.config ..
creating tvuser and giving ..
reloading priviliges ..
Settings up perl and shell scripts ...
Scheduling recording and listings ...
Changing permissions ...
[root@chrisrickert webvcrplus]# ./listings.pl
Gettings listings for XMLTV
DBI connect('database=;host=','',...) failed: Access denied for user:
'root@localhost' (Using password: NO) at ./listings.pl line 17
[root@chrisrickert webvcrplus]#
Why am i getting this Access denied.....(Using password: NO)? I gave my
root password up there ./setup.pl
thanks
Chris
|
|
From: Lance S. <la...@ls...> - 2003-05-04 02:19:29
|
When I install webvcr+, it works fine for about a week. Then, something goes wrong. I think it happens when the weekly listings script runs, but I'm not sure. Anyway, shows that I've set to record fail, because the #STATION# and #TIME# variables become null. All the recordings fail. In the past, I've "solved" this problem by reinstalling webvcr+, but it would be nice to find out what the source of the problem is and fix it. Has anyone else ever encountered this? -- .~. /V\ Lance Simmons /( )\ Irving, Texas ^^-^^ |
|
From: Ian T. <ia...@ih...> - 2003-04-15 22:52:00
|
When ffmpeg converts a .qt file, there is no video, only audio. This is the command line that is being used, though I have changed codecs a few times to test various ones: /usr/bin/ffmpeg -vcodec mpeg4 -acodec mp3 -i test.qt -b 800 -sameq -ab 128 test.avi When I try to play the avi in mplayer, I get this: Playing /home/ian/test.avi Cache fill: 8.59% (720896 bytes) AVI file format detected. Forced NON-INTERLEAVED AVI file format. VIDEO: [DIVX] 320x240 24bpp 29.97 fps 209.5 kbps (25.6 kbyte/s) ========================================================================== Opening audio decoder: [mp3lib] MPEG layer-2, layer-3 MP3lib: init layer2&3 finished, tables done AUDIO: 44100 Hz, 2 ch, 16 bit (0x10), ratio: 16000->176400 (128.0 kbit) Selected audio codec: [mp3] afm:mp3lib (mp3lib MPEG layer-2, layer-3) ========================================================================== ========================================================================== Trying to force video codec driver family -1 ... Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family Selected video codec: [ffodivx] vfm:ffmpeg (FFmpeg MPEG-4) ========================================================================== Checking audio filter chain for 44100Hz/2ch/16bit -> 44100Hz/2ch/16bit... AF_pre: af format: 2 bps, 2 ch, 44100 hz, little endian signed int AF_pre: 44100Hz 2ch Signed 16-bit (Little-Endian) alsa-init: testing and bugreports are welcome. alsa-init: requested format: 44100 Hz, 2 channels, Signed 16-bit (Little-Endian) alsa-init: 1 soundcard found, using: hw:0,0 alsa9: 44100 Hz/2 channels/4 bpf/65536 bytes buffer/Signed 16 bit Little Endian AO: [alsa9] 44100Hz 2ch Signed 16-bit (Little-Endian) (2 bps) Building audio filter chain for 44100Hz/2ch/16bit -> 44100Hz/2ch/16bit... Starting playback... This file was encoded with libavcodec build 4646 Error, header damaged or not MPEG4 header (qscale=0) This file was encoded with libavcodec build 4646 Error, header damaged or not MPEG4 header (qscale=0) header damaged Error while decoding frame! This file was encoded with libavcodec build 46461 0% 0% 0.0% 0 0 99% Error, header damaged or not MPEG4 header (qscale=0) header damaged Error while decoding frame! Does anyone know what the problem is? Any ideas on how I can get this working? -- Ian Truelsen Email: ia...@ih... AIM: ihtruelsen Homepage: http://www.ihtruelsen.dyndns.org |