Re: [mythtv] MFD Ready, planing Plugin...

2006-01-20 Thread Devan Lippman
out there have a quick overview of this? Thoughts on starting this before the code gets to 0.19? -- Thanks, Devan Lippman devan at lippman dot net ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

[mythtv] DB Schema update is failing

2005-12-18 Thread Devan Lippman
Database Schema upgrade FAILED, unlocking. 2005-12-18 05:58:07.856 Couldn't upgrade database to new schema -- Thanks, Devan Lippman devan at lippman dot net ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin/mailman/listinfo/mythtv

[mythtv] OSDConvo idea

2005-11-17 Thread Devan Lippman
. Writing this with support for plugins would allow for expanding to support most any desired messaging system (AIM, ICQ, IRC...). I'm not sure th problems I'll encounter doing this as I've only just started reviewing the OSD code. Anyone have any thoughts on this before I go tearing away? -- Thanks,Devan

Re: [mythtv] Help with mythprotocol

2005-11-15 Thread Devan Lippman
to allow clients to request an XML stream instead? So for example they could log in and then send a command to switch formatting to XML? -- Thanks,Devan Lippman devan at lippman dot net ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin

Re: [mythtv] mutliple storage directories idea... ?

2005-11-03 Thread Devan Lippman
/libs/libmythtv/programinfo.cpp?rev=7677#L1217 I can't think of a non-invasive approach to use.Ideas?Mike Maybe something like: 1221 if (!pathname. isEmpty()) 1222 retval = pathname.mid( pathname.findRev( '/' )); 1223 else-- Thanks,Devan Lippman devan at lippman dot net

Re: [mythtv] mutliple storage directories idea... ?

2005-11-03 Thread Devan Lippman
On 11/3/05, Michael T. Dean [EMAIL PROTECTED] wrote: On 11/03/05 13:14, Devan Lippman wrote:On 11/2/05, Michael T. Dean [EMAIL PROTECTED] wrote:Line 1222 of programinfo.cpp is the culprit, but unfortunately, I can't see an easy way to fix it. We can't just trim the RecordFilePrefix offthe left

Re: [mythtv] Intro and Mythweb

2005-11-02 Thread Devan Lippman
replace mythmusic, I say it could today). Putting zero-config in there could be used to eliminate the step of setting the remote database from the frontend completely. -- Thanks,Devan Lippman devan at lippman dot net ___ mythtv-dev mailing list mythtv-dev

Re: [mythtv] Who is working on MythVideo?

2005-11-01 Thread Devan Lippman
On 10/31/05, Ian Caulfield [EMAIL PROTECTED] wrote: On Mon, 31 Oct 2005, Devan Lippman wrote: I have a patch to myth that will ahow season/episode in the recordings viewer. Data is captured from tv.com http://tv.com through a perl script that I run as a user defined job. Didn't know there was any

Re: [mythtv] Who is working on MythVideo?

2005-10-31 Thread Devan Lippman
On 10/31/05, Ian Caulfield [EMAIL PROTECTED] wrote: On Mon, 31 Oct 2005, Devan Lippman wrote: I have a patch to myth that will ahow season/episode in the recordings viewer. Data is captured from tv.com http://tv.com through a perl script that I run as a user defined job. Didn't know there was any

[mythtv] Example of overlay for live TV

2005-09-16 Thread Devan Lippman
that updates a fantasy league table (football for now) and then some mechanism for displaying it to the screen. Any advice is appreciated. -- Thanks,Devan Lippman [EMAIL PROTECTED] ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin/mailman

Re: [mythtv] Example of overlay for live TV

2005-09-16 Thread Devan Lippman
On 9/16/05, Michael T. Dean [EMAIL PROTECTED] wrote: Devan Lippman wrote: Could someone point me to a code example for creating an overlay for mythtv that would allow me to create a scroller at the top of the screen?I'm trying to make something that would allow me to watch games while reviewing

Re: [mythtv] Call for patches

2005-07-02 Thread Devan Lippman
confess I don't know what a baselevel smells like. -- Thanks,Devan Lippman [EMAIL PROTECTED] ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Re: [mythtv] Building from CVS Question

2005-06-27 Thread Devan Lippman
you don't have to do both. -- Thanks, Devan Lippman [EMAIL PROTECTED] On 6/27/05, Tom Lichti [EMAIL PROTECTED] wrote: I always do amake clean ; make distcleanbefore I build. Is this strictly necessary? I'm sure it makes thecompile take longer, just wondering if I need to do this everytime

[mythtv] Feature Request: sounds attached to actions

2005-06-12 Thread Devan Lippman
I know I've heard this one requested before but to be attached to button presses. Would it be possible to play a sound lick a tick or something when navigating menus?-- Thanks,Devan Lippman [EMAIL PROTECTED] ___ mythtv-dev mailing list mythtv-dev

Re: [mythtv] Idea: Browse and download shows from remote backends

2005-06-05 Thread Devan Lippman
This sounds a lot like p2p filesharing. I think we all know where that leads... DevanOn 6/5/05, Min Idzelis [EMAIL PROTECTED] wrote: I have an idea for a plugin and I was wondering if it could be done.Maybe some people with more familiarity with the inner workings ofmyth can let me know what they

Re: [mythtv] Re: Patch for Transcoding without commercials

2005-05-31 Thread Devan Lippman
On 5/31/05, Chris Pinkham [EMAIL PROTECTED] wrote: On 5/27/05, Devan Lippman [EMAIL PROTECTED] wrote: =20 The query string was missing seconds so it would not find the recording entry. Added 00 to the date formatting string in was this patch commited?Not as of then, but I just committed

[mythtv] Re: Patch for Transcoding without commercials

2005-05-30 Thread Devan Lippman
On 5/27/05, Devan Lippman [EMAIL PROTECTED] wrote: The query string was missing seconds so it would not find the recording entry. Added 00 to the date formatting string in ProgramInfo::getProgramFlags() to fix this. Should there be a static constant for this formatting instead of rewriting

[mythtv] Re: Compile error with cirrent CVS

2005-05-30 Thread Devan Lippman
I got around this by changing channelbase.h:60: virtual int GetFd() = 0; to virtual int GetFd() { return 0; } I'm pretty sure this isn't a good idea but I don't really know what GetFd is doing. On 5/30/05, Devan Lippman [EMAIL PROTECTED] wrote: just grabbed the new CVS to see if I could fix my

Re: [mythtv] Segfault when Myth Apps exit on Mandrake 10.1

2005-05-29 Thread Devan Lippman
the same seg faults under Linux From Scratch 6.0. It appears to be related to a Qmutex in util-x11.h (of course I could be wrong) but I haven't gotten any further with this. -- Thanks,Devan Lippman [EMAIL PROTECTED] ___ mythtv-dev mailing list mythtv-dev

[mythtv] Patch for Transcoding without commercials

2005-05-27 Thread Devan Lippman
The query string was missing seconds so it would not find the recording entry. Added 00 to the date formatting string in ProgramInfo::getProgramFlags() to fix this. Should there be a static constant for this formatting instead of rewriting it everywhere?-- Thanks,Devan Lippman [EMAIL PROTECTED

Re: [mythtv] Programming help.

2005-05-20 Thread Devan Lippman
oops, for(int i = 1; i match.length() !result; i++) result = ismatch(filename, match.substr(1)); should be for(int i = 0; i filename.length()-match.length() !result; i++) result = ismatch(filename.substr(i), match.substr(1)); guess its friday... Devan On 5/20/05, Devan Lippman [EMAIL PROTECTED

Re: [mythtv] developer docs

2005-05-13 Thread Devan Lippman
I've been reading through a lot of the job queue stuff lately, what would be a good way of documenting this that works for you? -- Thanks, Devan Lippman [EMAIL PROTECTED] On 5/13/05, Ed W [EMAIL PROTECTED] wrote: I would love it if someone volunteered to document some subsystem

Re: [mythtv] compile error: segmentation fault

2005-05-07 Thread Devan Lippman
/vikas/mythtv/mythtv/libs' make: *** [sub-libs] Error 2 any pointers? thanx ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev -- Thanks, Devan Lippman [EMAIL PROTECTED

[mythtv] Debugging mythtranscode

2005-05-03 Thread Devan Lippman
-- Thanks, Devan Lippman [EMAIL PROTECTED] ___ mythtv-dev mailing list mythtv-dev@mythtv.org http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

[mythtv] Dynamic m3u list for mythweb:music

2005-04-25 Thread Devan Lippman
listen). There are some things you'll need to change to get it to work for you around line 118 in the dynamic_m3u.php file. Please no criticism I know its quick and dirty. -- Thanks, Devan Lippman [EMAIL PROTECTED] music.php.bz2 Description: BZip2 compressed data ?php

Re: [mythtv] Re: CVS build broke commercial removal on transcode?

2005-04-24 Thread Devan Lippman
Nothing changed :- ( used today's CVS -- Thanks, Devan Lippman [EMAIL PROTECTED] On 4/24/05, Daniel Kristjansson [EMAIL PROTECTED] wrote: On Sat, 2005-04-23 at 22:19 -0600, Devan Lippman wrote: may be related, all the tools built from the CVS seem to end with segmentaiton faults now

[mythtv] CVS build broke commercial removal on transcode?

2005-04-23 Thread Devan Lippman
I just recompiled the backend today from the CVS and now when I transcode files the commercials are no longer removed. Is there a setting perhaps that was reset? -- Thanks, Devan Lippman [EMAIL PROTECTED] ___ mythtv-dev mailing list mythtv-dev

[mythtv] Re: CVS build broke commercial removal on transcode?

2005-04-23 Thread Devan Lippman
info available. (gdb) quit On 4/23/05, Devan Lippman [EMAIL PROTECTED] wrote: I just recompiled the backend today from the CVS and now when I transcode files the commercials are no longer removed. Is there a setting perhaps that was reset? -- Thanks, Devan Lippman [EMAIL PROTECTED

Re: [mythtv] 0.18's available.

2005-04-15 Thread Devan Lippman
That'll make my weekend a little more fun :-) Many changes from CVS Apr 13? Noticed no mention in the changelog but its still early I figure. Thanks Isaac. Devan ___ mythtv-dev mailing list mythtv-dev@mythtv.org

[mythtv] MythTV freeze

2005-04-11 Thread Devan Lippman
the frontend freezes (I can sometimes get back to menu with a lot of escape pressing). The backend does change the channel and, if I go back into livetv from the frontend, after recovering this the feed is good. -- Thanks, Devan Lippman [EMAIL PROTECTED

Re: [mythtv] Border Problem During Playback since Apr 8 CVS build

2005-04-11 Thread Devan Lippman
I've been seeing this too, just hasn't made it to the top of the list yet... has anyone tried changing the myth offset setting to see if that fixes it? I'll try this tonight. -- Thanks, Devan Lippman [EMAIL PROTECTED] On Apr 11, 2005 3:30 PM, Matt [EMAIL PROTECTED] wrote: On Apr 10, 2005 4:57

[mythtv] MythMusic feature request

2005-04-11 Thread Devan Lippman
to jump in to the development effort. My familiarity with the myth code is next to nil and this is likely to become a large project, but it could end up saving a lot of wires run accross the house. At any rate just thought I'd throw it out there. -- Thanks, Devan Lippman [EMAIL PROTECTED

[mythtv] MythWeb: Recorded Programs : error message

2005-04-08 Thread Devan Lippman
when clicking on the recorded programs link I am directed to a page with the following error message: Warning at /srv/www/htdocs/mythweb/includes/mythbackend.php, line 305: copy(image_cache/1049_2005040814_20050408143000.nuv.png) [function.copy]: failed to open stream: Permission denied URL:

[mythtv] Font issues with QT

2005-04-04 Thread Devan Lippman
. Here's a screen capture of what I get: http://www1.coe.neu.edu/~dlippman/mythtv-setup.JPG I'm wondering what font exactly myth is trying to load, and if there might be something else in the picture that I may need to rebuild (ie: freetype, etc.)? -- Thanks, Devan Lippman [EMAIL PROTECTED

Re: [mythtv] sementation fault when running mythtv-setup

2005-04-03 Thread Devan Lippman
So I ran the QT hello example and sure enough I get the same segmentation fault... anyone know if there is a user group for QT that could help me with this? I'm running QT-free-3.3.3 thanks, Devan On Apr 3, 2005 7:40 AM, Devan Lippman [EMAIL PROTECTED] wrote: rebuilt qt last night to include

Re: [mythtv] sementation fault when running mythtv-setup

2005-04-02 Thread Devan Lippman
= 0x40017ff4}}, static metaObj = 0x0, box = 0x40018668, buttongroup = 0x0, checkbox = 0xb7e4} (gdb) On Apr 2, 2005 3:01 PM, Bruce Markey [EMAIL PROTECTED] wrote: Devan Lippman wrote: Downloaded the latest CVS today to confirm this issue hadn't been resolved. executing mythtv-setup creates