[Freevo-devel] [PATCH] Imdb fix

2004-12-09 Thread den_RDC
i am happy it works now :) HF den_RDC PS. The diff attached is against CVS, but should work for releases too. Index: src/util/fxdimdb.py === RCS file: /cvsroot/freevo/freevo/src/util/fxdimdb.py,v retrieving revision 1.9 diff -r1.9

Re: [Freevo-devel] dvdbackup

2004-10-29 Thread den_RDC
Very nice - This is exactly what the encodingserver package doesn't have yet. The only problem i see is i named my client plugin dvdbackup too. I'll change that in the next version (wich will be released somewhere in november) Grtz den_RDC On Friday 29 October 2004 03:15, Robert Gingher wrote

Re: [Freevo-devel] Freevo coding guidelines (please read)

2004-10-08 Thread den_RDC
though. When you need to define a tuple with only 1 element, you have 2 possible syntaxes: tuple = ( a, ) tuple = a, Please never use the second syntax. It is confusing as hell. When i first saw it, it thought it was a typing error :) Keep up the good work ! Mvg den_RDC On Sunday 03 October 2004

Re: [Freevo-devel] Encodingserver problem

2004-07-02 Thread den_RDC
On Wednesday 30 June 2004 05:00, Michael Osten wrote: On Jun 28, 2004, at 6:12 PM, den_RDC wrote: On Monday 28 June 2004 16:13, Mick wrote: Quick solution : #if we have a progressive ntsc file, lock the output fps if (ivtc=1 in vf) or self.ntscprog

Re: [Freevo-devel] Encodingserver problem

2004-06-29 Thread den_RDC
... really bad ! Please report back, but keep in mind i am very very busy atm. It could be a few days weeks before i respond (and before i release a new package). Mvg den_RDC Michael, I'm afraid your on your own on this one. Den_rdc, who wrote the plugin, may be able to help you. I use

Re: [Freevo-devel] Encodingserver problem

2004-06-29 Thread den_RDC
... really bad ! Please report back, but keep in mind i am very very busy atm. It could be a few days weeks before i respond (and before i release a new package). Mvg den_RDC Michael, I'm afraid your on your own on this one. Den_rdc, who wrote the plugin, may be able to help you. I use

Re: [Freevo-devel] Re: [PATCH] Norwegian translation

2004-05-29 Thread den_RDC
it on big releases due to time constraints). And my dutch grammar never was that good anyway. So have fun translating, and mail me if you need any help. Mvg den_RDC ps. kbabel hasn't got a huge feature list, but it beats vi/nano for editing po files imho. Eric

Re: [Freevo-devel] [attn den_RDC] feature request, recordserver.

2004-05-17 Thread den_RDC
in the devlopper doc. (there's also some test code at the bottom of encodingclient). Mvg den_RDC Cheers, Mick --- This SF.Net email is sponsored by: SourceForge.net Broadband Sign-up now for SourceForge Broadband and get the fastest 6.0

Re: [Freevo-devel] [attn den_RDC] feature request, recordserver.

2004-05-17 Thread den_RDC
On Tuesday 18 May 2004 04:23, Mick wrote: On Tue, 2004-05-18 at 08:55, den_RDC wrote: On Monday 17 May 2004 04:32, Mick wrote: I've only ever used robot4rip, a *great* windoes package i found on doom9.org a while ago to rip dvd's. I've got to say, the encodeserver option is even

Re: [Freevo-devel] Some small issues with the tvguide webinterface...

2004-04-09 Thread den_RDC
On Tuesday 06 April 2004 03:54, Aubin Paul wrote: On Mon, Apr 05, 2004 at 11:50:41PM +0200, den_RDC wrote: Hmm surprising as Konqueror and Safari are supposed to share almost the same html engine (Khtml). It's either a bug in Konqueror, or a relaxation of the rules in Safari... if no one

Re: [Freevo-devel] Some small issues with the tvguide webinterface...

2004-04-05 Thread den_RDC
On Monday 05 April 2004 18:43, Aubin Paul wrote: On Mon, Apr 05, 2004 at 05:16:42PM +0200, den_RDC wrote: When browsing the webinterface with konqueror (3.2.1), something really annoying happens : Every time i hoover over a programme block, scrollbars appear at the top bottom of the page

Re: [Freevo-devel] Re: Encodingserver Beta (finally :)

2004-03-22 Thread den_RDC
Fixed that and some other things... Get the new package here : http://dancevision.blub.be/genbox/encoding_package-30.tar.gz Mvg den_RDC this is the changelog r30 | rdc | 2004-03-22 23:50:55 +0100 (Mon, 22 Mar 2004) | 4 lines core: made a failed cropdetect fail-safe 1 pass output is now

Re: [Freevo-devel] Encodingserver Beta (finally :)

2004-03-19 Thread den_RDC
:26, den_RDC wrote: http://dancevision.blub.be/genbox/encoding_package-26.tar.gz All rolled into 1 handy freevo package. Just install it, run freevo encodingserver start to start the server and edit your config to include plugin.activate('video.dvdbackup) ... Usage... Select a dvd/dvd-on disc

[Freevo-devel] Encodingserver Beta (finally :)

2004-03-18 Thread den_RDC
/EncodingClient.html Mvg den_RDC -- Fry: Very impressive. Back in the 20th century we had no idea there was a university on Mars. Prof. Farnsworth: Well in those days Mars was just a dreary uninhabitable wasteland... much like Utah. But unlike Utah, it was eventually made livable, when

Re: [Freevo-devel] web interface ideas

2004-03-06 Thread den_RDC
exactly the same problem. Mvg den_RDC On Saturday 06 March 2004 05:20, Jason Tackaberry wrote: Aubin Paul wrote: If it's a w3 extension and not a browser-proprietary hack then sure. Though I would love to avoid javascript, etc. so I can use the web interface over links or w3m, but that's

Re: [Freevo-devel] Help requested for Unicode/XML strings in FXD files !!!!

2004-02-29 Thread den_RDC
encoding contents = unicode(contents, 'windows-1252') contents = contents.encode('utf-8') return contents I hope this is usefull. Mvg den_rdc On Saturday 28 February 2004 18:58, [EMAIL PROTECTED] wrote: I am currently developping a new video plugin similar to imdb.py

Re: [Freevo-devel] Help requested for Unicode/XML strings in FXD files !!!!

2004-02-29 Thread den_RDC
encoding contents = unicode(contents, 'windows-1252') contents = contents.encode('utf-8') return contents I hope this is usefull. Mvg den_rdc On Saturday 28 February 2004 18:58, [EMAIL PROTECTED] wrote: I am currently developping a new video plugin similar to imdb.py

[Freevo-devel] Encodingserver alpha release...

2004-02-23 Thread den_RDC
and dvdbackup.py in src/video/plugins, and load video.dvdbackup in your local_config.py. Happy encoding. (these locations are not final btw, these will probably change when EncodingServer matures). Any comments, remarks or questions are welcome. Mvg den_RDC -- Michelle: You expect me to live

[Freevo-devel] Encodingserver alpha release...

2004-02-22 Thread den_RDC
and dvdbackup.py in src/video/plugins, and load video.dvdbackup in your local_config.py. Happy encoding. (these locations are not final btw, these will probably change when EncodingServer matures). Any comments, remarks or questions are welcome. Mvg den_RDC -- Michelle: You expect me to live

[Freevo-devel] Encodingserver alpha release...

2004-02-22 Thread den_RDC
and dvdbackup.py in src/video/plugins, and load video.dvdbackup in your local_config.py. Happy encoding. (these locations are not final btw, these will probably change when EncodingServer matures). Any comments, remarks or questions are welcome. Mvg den_RDC -- Michelle: You expect me to live

[Freevo-devel] [BUG] subsurface rectangle outside surface area

2004-02-20 Thread den_RDC
I get this traceback (enbdlessly looped) when i try to open one of my video folders. This could be fixed already because i am using anoncvs, but i've had it for 2-3 days now so i want to make sure somebody knows about this. Exception: subsurface rectangle outside surface area wanted (-1, 65,

[Freevo-devel] [PATCH] for src/video/videoitem.py

2004-02-19 Thread den_RDC
to access the dvd title in an itemplugin to give a name to the avi's backed up from DVD. For more information on the upcoming plugin, have a look at http://pintje.servebeer.com/svn/encodingserver/trunk/ . The rest of the EncodingServer is also there. Mvg den_RDC Index: src/video/videoitem.py

Re: [Freevo-devel] logo

2004-02-11 Thread den_RDC
than a home theatre if you ask me (with all the webstuff and other services. So I would go for something more like HyperMedia Platform or something else that sounds cool :) Mvg den_RDC Note that I only committed a pre-rendered jpg because it was 40k while the transparent PNG

Re: [Freevo-devel] Website

2004-01-14 Thread den_RDC
Very very smooth. Renders perfectly in Konqueror 3.1.4 and Opera 7.23 too. If someone could integrate the wiki in the main website design it would be perfect :) Mvg den_RDC On Wednesday 14 January 2004 08:01, Aubin Paul wrote: Ok, I'm not sure why, but I just redid a significant chunk

Re: [Freevo-devel] Freevo future

2004-01-08 Thread den_RDC
I am starting with encondingsserver (really, it's Real Soon NOW, i expect to have something cooked up by the end of the month). It will also open the way for people to make an encoding plugin for recorded tv shows (handy for pvr250 users running out of diskspace). On Thursday 08 January 2004

[Freevo-devel] Encodingserver - I didn't start yet but...

2004-01-06 Thread den_RDC
But i did think a lng time about it. Have been busy latly with all sorts of stuff, but i did make some changes to the implementation and there's a code structure in my head. Here's the proposed Interface definition ( the changes make it possible to make an initial version that just

Re: [Freevo-devel] Re: Freevo still does a hardkill on my mplayer...

2003-12-18 Thread den_RDC
Thx for the tip, cvs resolved the issue... Let's hope the bug is actually dead (u never know with zombies) Mvg den_RDC On Wednesday 17 December 2003 16:41, Torben Janssen wrote: Hi, Maybe it's a dfbmga problem, or you could try freevo cvs. The whole childapp stuff is moved out

Re: [Freevo-devel] Freevo still does a hardkill on my mplayer...

2003-12-15 Thread den_RDC
On Sunday 14 December 2003 23:52, den_RDC wrote: - After freevo hardkills mplayer, a zombie mplayer process is left over. An example of the zombie process root 3503 0.2 0.0 00 ?Z21:36 0:01 [mplayer] defunct

[Freevo-devel] Freevo still does a hardkill on my mplayer...

2003-12-14 Thread den_RDC
I already nagged about this on irct, but i have collected some log output. The problem is the following : Freevo (1.4) kill's mplayer (with dfbmga) always the hard way when playing video. Playing audio files doesn't show any problem. I investigated this and made the following observations. -

Re: [Freevo-devel] bug in fxdimdb.py print_variant(self)

2003-11-26 Thread den_RDC
purposes. -Wayne Could u give me some more information, like a traceback, wich functions u called before trying to write the fxd, and the data passed to fxdimdb? The mplayer options are indeed optional. I am on the bugs tail, but i need some more info :) Mvg den_RDC

Re: [Freevo-devel] bug in fxdimdb.py print_variant(self)

2003-11-26 Thread den_RDC
: FxdImdb instance has no attribute 'varmpl_opt' Try this (i haven't tested it, but it should work) fxdimdb.py, line 133 self.varmpl_opt = None (instead of self.var_mplopt = [] i think) If it works, please mail back so it can be fixed in CVS. Mvg den_RDC From: den_RDC [EMAIL PROTECTED

Re: [Freevo-devel] [feature request] save state for movie

2003-11-07 Thread den_RDC
and freevo will continue where u stopped the movie last time. I don't know if it supports multiple bookmarks though. Mvg den_RDC On Friday 07 November 2003 07:29, Ben Ford wrote: Is there a way to get current position back from mplayer? If so, I have an idea for a really cool feature. Imagine

Re: AW: [Freevo-devel] A new approach for dvdbackup : EncodingServer

2003-11-04 Thread den_RDC
and working in a few weeks i'll be hapy :) Mvg den_RDC On Tuesday 04 November 2003 04:07, Mick wrote: This sounds very exciting. A windows based all in one ripper called 'gordian knot' has had a 'quality test' feature for a while. I wonder if its a possibility with this tool? what it does

[Freevo-devel] Updated dutch translation...

2003-11-02 Thread den_RDC
Still written in funny computer dutch (even M$ can't do it better so i will sleep easy). If there are dutch language purists here that want to make this better or find a bug, go ahead. In the mean time this will do :) Mvg den_RDC # Freevo Dutch translation by den_RDC # Copyright (C) 2003

[Freevo-devel] A new approach for dvdbackup : EncodingServer

2003-10-31 Thread den_RDC
, each tuple containg id and friendly name (id, friendlyname) What do u guys think? Mvg den_RDC --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code

Re: [Freevo-devel] Re: dvdbackup : Desperate, need some help

2003-10-30 Thread den_RDC
, but i have no clue how to implement it. @Robert : It's not in cvs, and it's still in devlopment - i'll try to post it as soon as it does what it supposed to do without side-effects and crashing (but real soon now though) Mvg den_RDC

Re: [Freevo-devel] Re: dvdbackup : Desperate, need some help

2003-10-30 Thread den_RDC
this isn't provided by mplayer, but by libdvdread or something alike). Mvg den_RDC On Thursday 30 October 2003 18:24, Aubin Paul wrote: I know, personally, I will end up patching dvdbackup to use vobcopy and perhaps encode with something else; I don't like the idea of my DVD-ROM drive running

Re: [Freevo-devel] dvdbackup : Desperate, need some help

2003-10-30 Thread den_RDC
On Thursday 30 October 2003 10:47, Eirik Meland wrote: den_RDC [EMAIL PROTECTED] writes: 1 - Patch mencoder. Shouldn't be very hard if u know C (i don't - problem :) . By far the best solution. 2 - Put the frameno.avi in freevo's cwd (not changing it ofcourse). Very nasty, we don't even

Re: SV: [Freevo-devel] Internet update/plugin selection framework for Freevo ?

2003-10-13 Thread den_RDC
that except for some donations. So it' basically near impossibble, except maybe if u have a small truckload of cash. Mvg den_RDC On Monday 13 October 2003 23:29, Aubin Paul wrote: There are a few problems that I considered when I was thinking of something like this. 1. Codec licensing is a big one

Re: [Freevo-devel] dvdrip.py - An alpha release...

2003-09-14 Thread den_RDC
No problem, dvdbackup it is then :) On Sunday 14 September 2003 08:19, Gustavo Sverzut Barbieri wrote: Hi, Do you agree to change the name to dvdbackup? dvdrip may cause troubles in the future. I don't have DVD's here to test, so I can't tell about other things. Gustavo --- den_RDC

[Freevo-devel] dvdrip.py - An alpha release...

2003-09-13 Thread den_RDC
on the hard drive). U can't recall the progress menu atm. Have fun testing this and remember : this is ALPHA code, and is far from ready to be included in the CVS. This code could be classified under terrorist activity and plan an attempt on your life, u never know ;) Mvg den_RDC #if 0

[Freevo-devel] [PLUGIN] I made a ProgressBar.py (and i learned i need cvs update more often)

2003-09-08 Thread den_RDC
why running cvs update very day is a very good thing to do. Mvg den_RDC PS. I got a ProgressBox too, but that one isn't useless yet as it includes a label, and ddishi's one doesn't. Maybe i'll update dishi's code that's already in cvs. #!/usr/bin/env python

Re: [Freevo-devel] Re: 1.4 release schedule and feature freeze

2003-09-07 Thread den_RDC
For the record, if the code mentions time.sleep(0.3) it will wait 3 10ths of a second, not 3 seconds. den_RDC On Sunday 07 September 2003 19:53, Aubin Paul wrote: Been trying a number of things, but the result is the same. Freevo responds quickly and sends the 'quit' command, but Xine

[Freevo-devel] TODO In progress

2003-09-04 Thread den_RDC
Like dischi asked in the Re: 1.4? post, i'll post what i am working on : - pytvgrab (will replace xml_tv_be), but it is a separate package, so no worries for freevo there - dvdrip plugin (based on quickrip), working atm, but some very rough edges, and a dirty gui atm What i would like to see in

[Freevo-devel] Some punk wacked the Wiki (again)

2003-08-31 Thread den_RDC
/you can add but not remove-system? Just some thoughts... Mvg den_RDC --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Freevo-devel mailing list

[Freevo-devel] [PATCH] xml_tv_be

2003-08-14 Thread den_RDC
Small update, cleaned up string filtering. All leftover html tags are removed from xml strings, and a few xxx are better handled. Should get rid of broken xml listings when the website guys put a surprise extra html tag somewhere. Works pretty fast now with -OO :) Mvg den_RDC diff -Naur freevo

Re: [Freevo-devel] directfb

2003-08-09 Thread den_RDC
mode for that :). I used a vsync patched 2.4.21 kernel, directfb 0.9.19 and mplayer cvs (wich uses triple buffering by default afaik). I did set the fieldaprity=top (or something like that). mvg den_RDC On Friday 08 August 2003 17:35, Aubin Paul wrote: On Fri, Aug 08, 2003 at 11:48:19AM -0300

Re: [Freevo-devel] Bug when displaying movie fxds

2003-08-03 Thread den_RDC
I don't know for certain if this is your bug, but afaik relative paths (appart from files on removable discs) or not allowed. I could be completly wrong though. den_RDC On Sunday 03 August 2003 14:13, [EMAIL PROTECTED] wrote: Hi, I think there is a bug in the movie-menu when displaying

Re: [Freevo-devel] dvd ripping

2003-07-30 Thread den_RDC
I suggested this sometime ago in #freevo... it should be easy to convert into a plugin, it's basically just a mencoder frontend. I would do it if i had some spare time, but the schedule is full for the next month so maybe someone volunteers? On Tuesday 29 July 2003 15:51, Aubin Paul wrote:

[Freevo-devel] Gentoo init script for web record server

2003-07-30 Thread den_RDC
A smaal init script for gentoo, maybe someone finds it usefull. Paths are hardcoded because i lack decent scripting knowledge :) if anyone want's to improve it, be my guest. #! /sbin/runscript # Boot script for freevoweb on gentoo # by den_RDC depend() { need localmount net } start

Re: [Freevo-devel] Keeping the runtime up to date

2003-07-30 Thread den_RDC
Gentoo is really nice with freevo because everything works good with the system packages. but i don't know how up-to-date the current ebuilds are (freevo-runtime ebuild used to compile some sort of runtime exclusivly for freevo, and i didn't like that). There is a cvs ebuild class, so someone

Re: [Freevo-devel] Re: Keeping the runtime up to date

2003-07-30 Thread den_RDC
that doesn't pull libDV at all. And it would be handy if we pulled media-video/matroxset too. Grtz den_RDC On Wednesday 30 July 2003 20:52, Dirk Meyer wrote: den_RDC wrote: Gentoo is really nice with freevo because everything works good with the system packages. but i don't know how up-to-date

Re: [Freevo-devel] [NEW] fxdimdb.py class for fxd and imdb handling...

2003-07-16 Thread den_RDC
be rewritten to use the class. Ofcourse, the class offers far more possibility's than currently implemented in the imdb cli script or imdb plugin, but it'll probably up to other people to implement that. I've got some serieous studying to do this sumer. Grtz den_RDC #!/usr/bin/env python #if 0

[Freevo-devel] [NEW] fxdimdb.py class for fxd and imdb handling...

2003-07-08 Thread den_RDC
). Above all, please test this with wathever wacky stuff you can think of. It shouldn't generate invalid FXD's (if it does it will tell you), but i can't test all possible combinations. Send a bug report here or on the chat if u find a bug. Grtz den_RDC #if 0

[Freevo-devel] New imdb/fxd class in progress

2003-07-02 Thread den_RDC
didn't help) grtz den_RDC --- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http

Re: [Freevo-devel] Re: Errors in helpers/imdb.py

2003-06-30 Thread den_RDC
Do you use the imdb plugin? I remeber it had this issue too, it didn't write media-id's and tried to place files on cd/dvd media. I sent a fix to Dischi a few days ago and it got into cvs. But as i see it, it still has a bug, i think it got in with the mmpython patches. Try this Line 158 ,

[Freevo-devel] [PATCH] xml_tv_be

2003-06-27 Thread den_RDC
, but most useful info is also contained in the config file. grtz den_RDC diff -Naur freevo-cleancvs/helpers/xml_tv_be.config freevo-patchcvs/helpers/xml_tv_be.config --- freevo-cleancvs/helpers/xml_tv_be.config 1970-01-01 01:00:00.0 +0100 +++ freevo-patchcvs/helpers/xml_tv_be.config 2003-06

[Freevo-devel] Re: New event handling

2003-05-27 Thread den_RDC
segfault... i fixed it by moving Arial_Bold.TTF into skins/fonts/. Greetz den_RDC --- This SF.net email is sponsored by: ObjectStore. If flattening out C++ or Java code to make your application fit in a relational database is painful, don't do