[Freevo-users] firebird plugin

2005-04-02 Thread jeff elkins
Anyone running the firebird plugin?

I get the following when I attempted to load it:

==
[EMAIL PROTECTED] ~ $ freevo
ROM_DRIVES: Auto-detected and added "('/cdrom', '/dev/hdc', 'CD-1')"
ROM_DRIVES: Auto-detected that /dev/hdc is the same device as /dev/hdc,
skipping
WARNING: /etc/freevo/lircrc not found!
failed to load plugin firebird
start 'freevo plugins -l' to get a list of plugins
Traceback (most recent call last):
  File "/usr/lib/python2.3/site-packages/freevo/plugin.py", line 570, in
__load_plugin__
exec('import %s' % module)
  File "", line 1, in ?
  File "/usr/lib/python2.3/site-packages/freevo/plugins/firebird.py", line
23, in ?
menuwidget = menu.get_singleton()
AttributeError: 'module' object has no attribute 'get_singleton'
[EMAIL PROTECTED] ~ $ 


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Recording Volume?

2005-04-02 Thread Craig Cooper
OK, I have Freevo working very well now, but the recording level seems
a bit low (50%).

Is this set in loca_conf.py or in the OS, or in the mencoder options?!

any help appreciated.

Craig Cooper


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Using the mouse for freevo input

2005-04-02 Thread Jesper Mathiassen
Has anybody written a plugin which could use a mouse as input for 
freevo? and by this I dont mean point and click really.. I have a 
wireless mouse with too many buttons, which, due to radio has excellent 
reach and useability (I can use this from any point in my house actually.. )
I figured I could control the menu with the wheel and map buttons to 
functions like play and exit etc.
Since I didn't find anything on this topic, I suppose few, if any, has 
done this, so I'd also like to know how to catch these events from the 
mouse and trigger the freevo event so that I might construct a plugin 
myself?

- Styx
---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Re: Needing help with lirc

2005-04-02 Thread Vihtori Sammalisto
Jim Duda wrote:
Vihtori,
You're almost there.  You indeed need to load /etc/freevo/lircrc.  You need
to map
The keys which your remote provides, to those which freevo wants.  For
example, I 
Have ...

Essential commands:
#LEFT, RIGHT, UP, DOWN, SELECT, ENTER, EXIT, DISPLAY
#Reccomended commands:
#REC, REW, PLAY, FFWD, PAUSE, STOP, CH+, CH-
#format of file is:
begin 
   prog = freevo 
   button = select
   config = SELECT 
end 

begin 
   prog = freevo 
   button = up
   config = UP 
end 

I have one entry for each of the "essential commands" shown at the top.
You can use the "irw" program to see exactly what commands you remote is
providing.
The next thing you can do is to tailor some of the commands in your
local_conf.py.
For example, I have in my local_conf.py:
EVENTS['video']['REW'] = Event(SEEK, arg=-600)
EVENTS['video']['FFWD'] = Event(SEEK, arg=+600)
EVENTS['video']['LEFT'] = Event(SEEK, arg=-60)
EVENTS['video']['RIGHT'] = Event(SEEK, arg=+60)
EVENTS['video']['DOWN'] = Event(SEEK, arg=-10)
EVENTS['video']['UP'] = Event(SEEK, arg=+10)
Good Luck.  I hope this makes sense to you.
Jim
"Vihtori Sammalisto" <[EMAIL PROTECTED]> wrote in message
news:<[EMAIL PROTECTED]>...
 

Hi
I have difficultys to get lirc working properly with freevo. I can do 
menu navig and select items there etc. But how can I get all mplayer 
commands in remotely. I want to complete control for mplayer too.

My english is sooo poorr,
so here is an example what im looking for:
There is keyboard command "r" and "t". In mplayer these buttons adjust 
subtitles position. What i need and where if i want to same effect with 
remotecontrol? Is it possible to do it in /etc/freevo/lircrc?

This wont work in /etc/freevo/lircrc:
begin
   prog = mplayer
   button = 1
   config = sub_pos -1
end
begin
   prog = mplayer
   button = 2
   config = sub_pos +1
end
Thanks in advance!

---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
   


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users
 

Thank you for your reply. I already have /etc/freevo/lircrc file , but i 
dont know how to get all commands working...

Here is lirc.conf http://freevo.ath.cx/~htpc/lirc.conf , I'd to make 
this manually using "mode2", cause "irrecord" isnt working properly.

Here is lircrc http://freevo.ath.cx/~htpc/lircrc.txt , all  existing 
"beginend" are working just fine . There is at end of file all 
mplayer keyboard commands from /etc/mplayer/input.conf, and i want to 
use those commands in some way with my remotecontrol.

I have tryed these lines in /etc/freevo/lircrc file without success:
begin
   prog = mplayer
   button = 1
   config = sub_pos -1
end
begin
   prog = mplayer
   button = 2
   config = sub_pos +1
end
I have created lircrc.mplayer file where i put those commands like 
above. And used "-lircconf /path/to/lircrc.conf" option with mplayer, 
this wasnt working either...


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] record_client errors

2005-04-02 Thread Jaap Struyk
Op za 02-04-2005, om 15:05 schreef John Molohan:

> Error: VIDEO_SHOW_DATA_DIR not found  (on startup)

Like it says: "dir not found", maybe you should create one and adapt
your local_conf.py to it?

so create the dir; "mkdir .freevo/data/tv-show-images"
and add to your conf:
VIDEO_SHOW_DATA_DIR = '.freevo/data/tv-show-images/'

> The Recordserver is Down (on entering Watch TV)

start the recordserver before you start freevo:
"freevo recordserver start"
you do that as the same user who runs freevo.
-- 
Groetjes Japie
http://www.japie.deserver.nl

2.6.11.5 GNU/Linux

Sbelling chequed wyth MICROSOFT SPELLCHECKER - vorgs grate!
;^)



---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Re: Needing help with lirc

2005-04-02 Thread Jim Duda
Vihtori,

You're almost there.  You indeed need to load /etc/freevo/lircrc.  You need
to map
The keys which your remote provides, to those which freevo wants.  For
example, I 
Have ...

Essential commands:
#LEFT, RIGHT, UP, DOWN, SELECT, ENTER, EXIT, DISPLAY
#Reccomended commands:
#REC, REW, PLAY, FFWD, PAUSE, STOP, CH+, CH-
#format of file is:

begin 
prog = freevo 
button = select
config = SELECT 
end 

begin 
prog = freevo 
button = up
config = UP 
end 

I have one entry for each of the "essential commands" shown at the top.

You can use the "irw" program to see exactly what commands you remote is
providing.

The next thing you can do is to tailor some of the commands in your
local_conf.py.
For example, I have in my local_conf.py:

EVENTS['video']['REW'] = Event(SEEK, arg=-600)
EVENTS['video']['FFWD'] = Event(SEEK, arg=+600)
EVENTS['video']['LEFT'] = Event(SEEK, arg=-60)
EVENTS['video']['RIGHT'] = Event(SEEK, arg=+60)
EVENTS['video']['DOWN'] = Event(SEEK, arg=-10)
EVENTS['video']['UP'] = Event(SEEK, arg=+10)

Good Luck.  I hope this makes sense to you.

Jim


"Vihtori Sammalisto" <[EMAIL PROTECTED]> wrote in message
news:<[EMAIL PROTECTED]>...
> Hi
> I have difficultys to get lirc working properly with freevo. I can do 
> menu navig and select items there etc. But how can I get all mplayer 
> commands in remotely. I want to complete control for mplayer too.
> 
> My english is sooo poorr,
> so here is an example what im looking for:
> There is keyboard command "r" and "t". In mplayer these buttons adjust 
> subtitles position. What i need and where if i want to same effect with 
> remotecontrol? Is it possible to do it in /etc/freevo/lircrc?
> 
> This wont work in /etc/freevo/lircrc:
> begin
> prog = mplayer
> button = 1
> config = sub_pos -1
> end
> 
> begin
> prog = mplayer
> button = 2
> config = sub_pos +1
> end
> 
> 
> Thanks in advance!
> 
> 
> 
> ---
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recordserver don't record

2005-04-02 Thread Rob Shortt
Andreas Lorensen wrote:
When I schedule a recording it don't record. 

How do I debug that - where do I look ?
Look at the recordserver log file in /var/log/freevo/.  If that 
directory doesn't exist then it will log to /tmp/freevo/.

-Rob
---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/Info/Sentarus/hamr30
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] record_client errors

2005-04-02 Thread Craig Cooper
After much trial and error, I finally have my WinFast TV2000 Deluxe FM
working with Freevo, and xmltv here in Australia. The only thing I do
not have is a working record_client.

Errors as follows:

Error: VIDEO_SHOW_DATA_DIR not found  (on startup)

The Recordserver is Down (on entering Watch TV)

Scheduling Failed:
record_client: connection error

If anyone knows a simple fix for this, I would appreciate it...

Many thanks,

Craig Cooper


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Needing help with lirc

2005-04-02 Thread Vihtori Sammalisto
Hi
I have difficultys to get lirc working properly with freevo. I can do 
menu navig and select items there etc. But how can I get all mplayer 
commands in remotely. I want to complete control for mplayer too.

My english is sooo poorr,
so here is an example what im looking for:
There is keyboard command "r" and "t". In mplayer these buttons adjust 
subtitles position. What i need and where if i want to same effect with 
remotecontrol? Is it possible to do it in /etc/freevo/lircrc?

This wont work in /etc/freevo/lircrc:
begin
   prog = mplayer
   button = 1
   config = sub_pos -1
end
begin
   prog = mplayer
   button = 2
   config = sub_pos +1
end
Thanks in advance!

---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] record_client errors

2005-04-02 Thread John Molohan
Type freevo recordserver before you start freevo 
-Original Message-
From: Craig Cooper <[EMAIL PROTECTED]>
Date: Sat, 2 Apr 2005 11:13:50 
To:freevo-users 
Subject: [Freevo-users] record_client errors

After much trial and error, I finally have my WinFast TV2000 Deluxe FM
working with Freevo, and xmltv here in Australia. The only thing I do
not have is a working record_client.

Errors as follows:

Error: VIDEO_SHOW_DATA_DIR not found  (on startup)

The Recordserver is Down (on entering Watch TV)

Scheduling Failed:
record_client: connection error

If anyone knows a simple fix for this, I would appreciate it...

Many thanks,

Craig Cooper


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users




---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Recordserver don't record

2005-04-02 Thread Alberto Hernando
El Viernes, 1 de Abril de 2005 17:14, Andreas Lorensen escribió:
> When I schedule a recording it don't record.
>
> How do I debug that - where do I look ?
>
> I can se TV whitout problems (but I had problems setting that up)

I have a similar problem. I'd like to add that a .fxd file appears, but 
no .avi file.

 Alberto


---
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/Info/Sentarus/hamr30
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Sound playing whilst recording

2005-04-02 Thread Craig Cooper
This should be an easy one to solve...

My sound plays while recording, this can be quite distracting... any
method of disabling this in the mencoder options in local_conf.py?

Many thanks,

Craig Cooper


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users