Re: [Freevo-users] Re: Snapshot Feb 8

2004-02-09 Thread Cyril Lacoux [Yack]
Le lundi 9 Février 2004 11:15, Dirk Meyer a écrit :

Hi all,

[...]
> >   File "/usr/lib/python2.3/os.py", line 154, in makedirs
> > mkdir(name, mode)
> > OSError: [Errno 2] No such file or directory: ''

Having the same problem this week-end with mmpython and freevo from cvs.

> >   File "/usr/local/freevo/src/util/mediainfo.py", line 138, in
> > __get_filename__
> > os.makedirs(dirname)
>
> can you please add a 'print dirname' before the os.makedirs and send
> me the output please.

dirname was empty.

This problem occurs (on my box) when freevo is initializing 
rom_drives.py on my first drive (/cdrom).

Best regards,
-- 
Cyril Lacoux.
B81AD6A6 -  638E A25A C5A4 C81A 4B98  CCC6 AFF7 FD7A B81A D6A6


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Manual TV viewing like VCR_CMD?

2004-02-09 Thread Chad Robinson
I use a PVR-250 card but had some trouble getting recording to work 
until I discovered VCR_CMD. Now I just use a simple shell script that 
calls ptune.pl, cats /dev/video0 to the specified file, sleeps for the 
given number of seconds, then kills the cat process. This works very 
well - so well that I really have no interest in whatever the "right" 
way happens to be.

Is there a similar facility for watching TV? If I could simply call 
ptune.pl to change channels, and just use "mplayer /dev/video0" to watch 
it, I could stop messing around trying to figure out how to get this 
going. MPlayer doesn't want to use the tv:// method because it gets 
ioctl errors talking directly to V4L/V4L2. But, since I don't need it 
to, it seems a waste to try to figure out why (not to mention I've tried 
and failed).

Is there some way I can override this? I don't wan't to use tvtime.

Thanks,
Chad


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Recording issue with mencoder

2004-02-09 Thread Patrick M Geahan
On Mon, 9 Feb 2004, Dave Smylie wrote:

> An easy way to do is to not encode audio to mp3 on the way, or decrease
> the resolution you are capturing at . . .

I'm already at 320x240, which I would think would be the lowest decent 
resolution I'd see.

What would you recommend for an easier audio encoding scheme?


---Patrick M [EMAIL PROTECTED]:3784715--
"You know, this is how the sum total of human knowledge is increased. 
Not with idle speculation and meaningless chatter, but with a 
medium-sized hammer and some free time." - [EMAIL PROTECTED], a.f.c-a


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Re: Snapshot Feb 8

2004-02-09 Thread Chris Graham
I added the line like you said but it does not look like it printed anythin 
to the screen.

here is the output, it looks like the same error.

Traceback (most recent call last):
 File "/usr/local/freevo/src/helpers/cache.py", line 462, in ?
   create_metadata()
 File "/usr/local/freevo/src/helpers/cache.py", line 350, in 
create_metadata
   d = directory.DirItem(s, None)
 File "/usr/local/freevo/src/directory.py", line 191, in __init__
   self.info = mediainfo.get_dir(directory)
 File "/usr/local/freevo/src/util/mediainfo.py", line 614, in get_dir
   return Info(dirname, {}, meta_cache.get(dirname, create=False))
 File "/usr/local/freevo/src/util/mediainfo.py", line 286, in get
   self.load_cache(dirname)
 File "/usr/local/freevo/src/util/mediainfo.py", line 188, in 
fileDB_load_cachecachefile = self.__get_filename__(dirname)
 File "/usr/local/freevo/src/util/mediainfo.py", line 139, in 
__get_filename__
   os.makedirs(dirname)
 File "/usr/lib/python2.3/os.py", line 154, in makedirs
   mkdir(name, mode)
OSError: [Errno 2] No such file or directory: ''



From: Dirk Meyer <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [Freevo-users] Re: Snapshot Feb 8
Date: Mon, 09 Feb 2004 11:15:15 +0100
"Chris Graham" wrote:
> 2) /freevo cache Fails where it says Creating Directory
> metadata.
>
> Traceback (most recent call last):
>   File "/usr/local/freevo/src/helpers/cache.py", line 462, in ?
> create_metadata()
>   File "/usr/local/freevo/src/helpers/cache.py", line 350, in
> create_metadata
> d = directory.DirItem(s, None)
>   File "/usr/local/freevo/src/directory.py", line 191, in __init__
> self.info = mediainfo.get_dir(directory)
>   File "/usr/local/freevo/src/util/mediainfo.py", line 613, in get_dir
> return Info(dirname, {}, meta_cache.get(dirname, create=False))
>   File "/usr/local/freevo/src/util/mediainfo.py", line 285, in get
> self.load_cache(dirname)
>   File "/usr/local/freevo/src/util/mediainfo.py", line 187, in
> fileDB_load_cachecachefile = self.__get_filename__(dirname)
>   File "/usr/local/freevo/src/util/mediainfo.py", line 138, in
> __get_filename__
> os.makedirs(dirname)
>   File "/usr/lib/python2.3/os.py", line 154, in makedirs
> mkdir(name, mode)
> OSError: [Errno 2] No such file or directory: ''
Directory ''? It's hard to create that :-)

Looks like we give a bad dirname to mkdirs.
>   File "/usr/local/freevo/src/util/mediainfo.py", line 138, in
> __get_filename__
> os.makedirs(dirname)
can you please add a 'print dirname' before the os.makedirs and send
me the output please.
Dischi

--
"Today Is A Good Day For Someone Else To Die!"
-- (Terry Pratchett, Feet of Clay)
---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users
_
Add photos to your messages with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=dept/features&pgmarket=en-ca&RU=http%3a%2f%2fjoin.msn.com%2f%3fpage%3dmisc%2fspecialoffers%26pgmarket%3den-ca



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] freevo starts, stops after 3 seconds without saying why

2004-02-09 Thread Wolfgang Rohdewald
I installed the debian packages freevo and freevo-media,
both 1.4.1-1, on Debian unstable. 

When starting freevo, I get the main window but it stays
black. After about 3 seconds the program exits with no
error message.

After setting DEBUG = 999 in config.py:

skin.py (77): Imported skin main
main.py (356): Skin: Loading XML file noia
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBI.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/Vera.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/VeraBd.ttf"
GUIObject.py (150): inside GUIOBJECT INIT
osd.py (1099): Trying to load file "/usr/share/freevo/images/blurr_naxos.jpg"
osd.py (1099): Trying to load file "/usr/share/freevo/images/splashscreen.png"
osd.py (304): Loading font "/usr/bin/../share/freevo/fonts/Vera.ttf"


and the end of --trace output:

   7/usr/lib/python2.3/threading.py:111:_RLock.release()
   8 /usr/lib/python2.3/threading.py:609:currentThread()
   6   
/usr/lib/python2.3/site-packages/freevo/util/misc.py:484:util.misc._Synchroniz
edMethod.__call__()
   7/usr/lib/python2.3/threading.py:93:_RLock.acquire()
   8 /usr/lib/python2.3/threading.py:609:currentThread()
   7
/usr/lib/python2.3/site-packages/freevo/osd.py:792:osd.OSD.drawstringframed()
   8 
/usr/lib/python2.3/site-packages/freevo/osd.py:716:osd.OSD.__drawstringframe
d_line__()
   9  
/usr/lib/python2.3/site-packages/freevo/osd.py:293:osd.OSDFont.stringsize()
  10   
/usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
  10   
/usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
  10   
/usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
   9  /usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
   9  /usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
.. many more
   9  /usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
   9  /usr/lib/python2.3/site-packages/freevo/osd.py:285:osd.OSDFont.charsize()
   8 /usr/lib/python2.3/site-packages/freevo/osd.py:1203:osd.OSD._sdlcol()


-- 
Wolfgang


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Hello

2004-02-09 Thread freevo-users
The message cannot be represented in 7-bit ASCII encoding and has been sent as a 
binary attachment.

<>


[Freevo-users] Re: Snapshot Feb 8

2004-02-09 Thread Dirk Meyer
"Chris Graham" wrote:
> 2) /freevo cache Fails where it says Creating Directory
> metadata.
>
> Traceback (most recent call last):
>   File "/usr/local/freevo/src/helpers/cache.py", line 462, in ?
> create_metadata()
>   File "/usr/local/freevo/src/helpers/cache.py", line 350, in
> create_metadata
> d = directory.DirItem(s, None)
>   File "/usr/local/freevo/src/directory.py", line 191, in __init__
> self.info = mediainfo.get_dir(directory)
>   File "/usr/local/freevo/src/util/mediainfo.py", line 613, in get_dir
> return Info(dirname, {}, meta_cache.get(dirname, create=False))
>   File "/usr/local/freevo/src/util/mediainfo.py", line 285, in get
> self.load_cache(dirname)
>   File "/usr/local/freevo/src/util/mediainfo.py", line 187, in
> fileDB_load_cachecachefile = self.__get_filename__(dirname)
>   File "/usr/local/freevo/src/util/mediainfo.py", line 138, in
> __get_filename__
> os.makedirs(dirname)
>   File "/usr/lib/python2.3/os.py", line 154, in makedirs
> mkdir(name, mode)
> OSError: [Errno 2] No such file or directory: ''

Directory ''? It's hard to create that :-)

Looks like we give a bad dirname to mkdirs. 
>   File "/usr/local/freevo/src/util/mediainfo.py", line 138, in
> __get_filename__
> os.makedirs(dirname)

can you please add a 'print dirname' before the os.makedirs and send
me the output please.


Dischi

-- 
"Today Is A Good Day For Someone Else To Die!"
-- (Terry Pratchett, Feet of Clay)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Snapshot Feb 8

2004-02-09 Thread Chris Graham
I am having some problems with the latest snapshot. These are the errors I 
am getting.

1) ./freevo makelogos  does not work

Traceback (most recent call last):
 File "/usr/local/freevo/src/helpers/makelogos.py", line 60, in ?
   from freevo.tv import xmltv
ImportError: No module named freevo.tv
2) /freevo cache Fails where it says Creating Directory 
metadata.

Traceback (most recent call last):
 File "/usr/local/freevo/src/helpers/cache.py", line 462, in ?
   create_metadata()
 File "/usr/local/freevo/src/helpers/cache.py", line 350, in 
create_metadata
   d = directory.DirItem(s, None)
 File "/usr/local/freevo/src/directory.py", line 191, in __init__
   self.info = mediainfo.get_dir(directory)
 File "/usr/local/freevo/src/util/mediainfo.py", line 613, in get_dir
   return Info(dirname, {}, meta_cache.get(dirname, create=False))
 File "/usr/local/freevo/src/util/mediainfo.py", line 285, in get
   self.load_cache(dirname)
 File "/usr/local/freevo/src/util/mediainfo.py", line 187, in 
fileDB_load_cachecachefile = self.__get_filename__(dirname)
 File "/usr/local/freevo/src/util/mediainfo.py", line 138, in 
__get_filename__
   os.makedirs(dirname)
 File "/usr/lib/python2.3/os.py", line 154, in makedirs
   mkdir(name, mode)
OSError: [Errno 2] No such file or directory: ''

Thanx
Chris
_
Add photos to your messages with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=dept/features&pgmarket=en-ca&RU=http%3a%2f%2fjoin.msn.com%2f%3fpage%3dmisc%2fspecialoffers%26pgmarket%3den-ca



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users