Re:[Freevo-devel] Freevo hangs on startup (last try to get this bug reported)

2004-07-12 Thread Thomas Zangl - Mobil
Am Sun, 11 Jul 2004 11:09:42 -0400, schrieb Aubin Paul [EMAIL PROTECTED]: Hi! Every time? That's a little odd. I've had it happen maybe once out of ten or more times. What version of mplayer are you using? Can you try running with a higher debug level to see what's going on? (change DEBUG = 0

Re:[Freevo-devel] Freevo hangs on startup (last try to get this bug reported)

2004-07-12 Thread Thomas Zangl - Mobil
Am Mon, 12 Jul 2004 21:12:04 +0200, schrieb Dirk Meyer [EMAIL PROTECTED]: Hi! The init script in the freevo distribution? Try to set freevo in conf.d/freevo to daemon. This starts a process waiting for a QUIT or POWER key to start freevo later. Does that work? Yes, the init script in the

Re:[Freevo-devel] Freevo hangs on startup (last try to get this bug reported)

2004-07-12 Thread Thomas Zangl - Mobil
Am Mon, 12 Jul 2004 21:58:38 +0200, schrieb Dirk Meyer [EMAIL PROTECTED]: o Permissions on the drive before startup? I use devfs and after booting I can see the permissions as follow: tzi dev # ls -la cdrom* lr-xr-xr-x 1 root root 13 Jul 12 21:21 cdrom - cdroms/cdrom0 cdroms: total 0

Re:[Freevo-devel] Freevo hangs on startup (last try to get this bug reported)

2004-07-12 Thread Thomas Zangl - Mobil
Am Mon, 12 Jul 2004 21:58:38 +0200, schrieb Dirk Meyer [EMAIL PROTECTED]: Hi! o Permissions on the drive before startup? o no disc in drive? o use daemon, log in and than press QUIT/POWER I tried to set ROM_DRIVES=[] in local_conf.py and freevo started w/o any problems (until now, I try to

Re:[Freevo-devel] FIXED - Freevo hangs on startup (last try to get this bug reported)

2004-07-12 Thread Thomas Zangl - Mobil
Am Mon, 12 Jul 2004 21:58:38 +0200, schrieb Dirk Meyer [EMAIL PROTECTED]: Hi! I got it fixed (at least it seems so ;) ). Its an issue within the video/plugins/mplayer.py class. The plugin _init_ tries to detect mplayer version and fails. I dont know why, but it seems to hang there forever. I

Re:[Freevo-devel] Freevo hangs on startup (last try to get this bug reported)

2004-07-10 Thread Thomas Zangl - Mobil
Am Fri, 9 Jul 2004 23:25:15 -0400, schrieb Aubin Paul [EMAIL PROTECTED]: Hi! I've had this happen once in awhile. I think it's failing to parse the output from mplayer, but I'm not sure. The message you're seeing is from the /previous/ copy that was locked up. I have to this every time

[Freevo-devel] Freevo hangs on startup (last try to get this bug reported)

2004-07-09 Thread Thomas Zangl - Mobil
Hi! I just updated my freevo to latest CVS. I restarted my box and freevo hangs again during the boot process (the progress bar is in the middle). I then restarted freevo and saw this: failed to load plugin video.mplayer start 'freevo plugins -l' to get a list of plugins Traceback (most

[Freevo-devel] mplayervis crash if listening to mp3, switch to fullscreen, back to small etc..

2004-06-03 Thread Thomas Zangl - Mobil
Hi, I got this in my logfile after Freevo was crashing: mplayervis.py (406): Detected MPlayer 'export' audio filter! Using MPAV. Crash! Traceback (most recent call last): File /usr/lib/python2.3/site-packages/freevo/main.py, line 469, in ? MainTread().run() File

[Freevo-devel] MplayerVis loaded but not working/visible

2004-06-01 Thread Thomas Zangl - Mobil
Hi! I´ve successfully installed the latest CVS from about an hour ago and added the audio.mplayervis plugin. I see in the debug out that Detected MPlayer 'export' audio filter! Using MPAV. the plugin does something. But it does not display anything if I listen to a MP3 file. Anything I

Re:[Freevo-devel] MplayerVis loaded but not working/visible

2004-06-01 Thread Thomas Zangl - Mobil
Am Tue, 1 Jun 2004 12:51:41 +0200, schrieb Jan Grewe [EMAIL PROTECTED]: Try pressing the Button '0' on your remote ;-) Indeed, I have now a black screen :) I use X11 for the display, because my Nvidia GF440MX does TV-Out only with their binary drivers... --

[Freevo-devel] [BUG] Mplayer plays video w/o sound, xine no longer used for DVD

2004-05-10 Thread Thomas Zangl - Mobil
Hi! Once again, a new release another bunch of issues :-/ I feel that 1.4.1 was the only version that worked for me. Okay, here we go: (Downloaded mmpython, freevo and pygoom from www.freevo.org, deinstalled and removed everything from my old freevo version. I run Gentoo, latest packages of

Re:[Freevo-devel] another crash when caching

2004-03-31 Thread Thomas Zangl - Mobil
Am Wed, 31 Mar 2004 01:17:07 -0500, schrieb Adam Stephens [EMAIL PROTECTED]: Hi, creating playlist metadata Traceback (most recent call last): File /usr/lib/python2.3/site-packages/freevo/helpers/cache.py, line 459, in ? create_metadata() File

[Freevo-devel] Freevo Crashes

2004-03-25 Thread Thomas Zangl - Mobil
Hi, I´m using Freevo since a year and I haven´t got any bigger problems with it. Just updated to 1.5pre1 and I get lots of errors: (I´m running a plain gentoo box, X11 and tvout using nvidias binary drivers, alsa9. I removed my old freevo and installed 1.5pre1 completly new) 1.) I do a freevo

[Freevo-devel] Caching bug fixed

2004-03-25 Thread Thomas Zangl - Mobil
Hi, Fixed the traceback when I try freevo cache: In freevo/util/fileops.py change the line 209 from: fsuffix = vfs.splitext(filename[1]).lower()[1:] to: f, fsuffix = vfs.splitext(filename[1]) fsuffix = fsuffix.lower() It works at least here... --