Re: [Freevo-users] audio.detach plugin and remote controller? Solved

2005-05-08 Thread tonous
On Sunday 08 of May 2005 14:21, Thorsten Pferdekämper wrote:

> I have just had a look at the coding of this plugin. It does the following
> line itself:
>  config.EVENTS['audio']['DISPLAY'] = Event(FUNCTION_CALL, arg=self.detach)
> This is because you should not need it.
> Regards,
>  Thorsten
Thanks Thorsen,
You are right, it was a bit tricky, I overlooked that in lircrc I have DISPLAY 
button mapped to REW function in freevo, but as I did the mapping some 
time ago, I was 'sure :-)' I have button REW mapped to function DISPLAY..
Forgot please :-)

Radek


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r 
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] audio.detach plugin and remote controller?

2005-05-07 Thread tonous
On Saturday 07 of May 2005 13:16, Jesper Mathiassen wrote:
>
> Use the Display button. already mapped as d on the keyboard and used for
> osd information in i.e. tvtime...
>
> - Styx

But I want to use remote controller, not keyboard. There is no predefined 
action in audio context in event.py for detach- it comes somehow from plugin 
when activated - and that what I ask how to use plugin and pass arguments to 
it in local_conf.py? 

something like for mplayer 
EVENTS['video']['1'] = Event(VIDEO_SEND_MPLAYER_CMD, arg='contrast -100')

Or is there any way how to virtualy press a key on keyboard? 

Bye


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] audio.detach plugin and remote controller?

2005-05-07 Thread tonous
Hello,
I'd like to assign detach function when plaing audio to my remote controller. 
What parameters have I write to local_conf.py? I assume somethink like 
EVENTS['audio']['ANGLE'] = Event(FUNCTION_CALL, arg='DETACH')
but that's not enough.

Thanks for help

Radek


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] nvram-wakeup integration status ?

2005-03-17 Thread tonous
On Sunday 13 of March 2005 22:05, Georg Künzel wrote:

>
> As you can see there is one problem right now: The script doesn't detects
> the following user activitys: mail, news, weather and images. I'll add a
> function so that a user can abort the idle check. It could easily be done
> with the command plugin (erase/write a lock file).
Hello this integratin of nvram-wakeup is in my todo too, but my plan is to 
check user activity via screensaver plugin, I didn't study it deeper, but 
maybe it would be better way? Then is not nessecery to patch freevo with 
abort question.

Tonous


---
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_ide95&alloc_id396&op=click
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] RE: copy files from sdcard ? ipod ? usb mass storage ?

2005-03-03 Thread tonous
Hello I'm using udev+hotplug+simple script to mount/umount devices (camera and 
usb-key) on gentoo base freevo box for automount/unmount. 

see 
http://forums.gentoo.org/viewtopic-t-113911-highlight-remove+usbstorage+hotplug.html
where I starts to, but I changed scripts a bit 

With help of udev every time I put in usb-key  /dev/key is created 
(or /dev/foto for camera) no matter in which order.

in
/etc/udev/rules.d/10-udev.rules
I have
BUS="usb", SYSFS{serial}="Y-364^020528XFJX0011009253", KERNEL="sd?1", 
NAME="+%k", SYMLINK="foto"
BUS="usb", SYSFS{product}="USB Mass Storage Device", KERNEL="sd?1", NAME="%k", 
SYMLINK="key"

use udevinfo on device you want to create symlink  - will help you to find 
specific values which you have to write to the file
#udevinfo -a -p /sys/block/sda/sda1


with help of hotplug when usb-storage module is used 
script  /usr/hotplug/usb/usb-storage is started, then I case which device was 
added, mount it and crete the script which will unmount device when removed
>>>>>
#!/bin/bash
logger "$0: usb-key - ACTION $ACTION REMOVER $REMOVER PRODUCT $PRODUCT DEVPATH 
$DEVPATH INTERFACE $INTERFACE TYPE $TYPE DEVFS $DEV+FS DEVICE $DEVICE"

case "$PRODUCT" in
   4cb/10a/1000) # Fuji camera
   logger "`basename $0`: Mounting Fuji camera"
   MOUNTPOINT="/mnt/foto"
   MOUNTDEV="/dev/foto"
   ;;
esac
case "$PRODUCT" in
   67b/2517/1) # USB stick
   logger "`basename $0`: Mounting Agenie USB stick"
   MOUNTPOINT="/mnt/key"
   MOUNTDEV="/dev/key"
   ;;
esac

#mounter - I must run in in background
/usr/local/bin/usb-udev-mount $MOUNTDEV $MOUNTPOINT &

#creating REMOVER
echo "#!/bin/bash" > $REMOVER
echo "logger \"\`basename $0\`: unmounting $MOUNTDEV \"" >>$REMOVER
echo "/bin/umount $MOUNTPOINT" >> $REMOVER

chmod +x $REMOVER
<<<<
/usr/local/bin/usb-udev-mount contains
>>>>>>>
#!/bin/bash
MOUNTDEV=$1
MOUNTPOINT=$2
FS=auto

logger "`basename $0`: $MOUNTDEV $MOUNTPOINT "

#wait for the dev/sd* to be created
for I in 1 2 3 4 5 6 7 8 9 10 11 12 13
do
   if [ -e $MOUNTDEV ]
  then
 logger "`basename $0`: $I s to found $MOUNTDEV "
 break
   fi
   sleep 1
   #logger "`basename $0`: $I"
done

if [ -e $MOUNTDEV ]
   then
  logger "`basename $0`: Mounting $MOUNTDEV at $MOUNTPOINT "
   else
  logger "`basename $0`: ERROR $MOUNTDEV not found "
   exit
fi

mkdir -p $MOUNTPOINT

CMD="mount $MOUNTDEV  $MOUNTPOINT -t $FS -o 
uid=freevo,gid=users,sync,fmask=113,dmask=002"
logger "`basename $0`: $CMD"
`$CMD`
<<<<<<<<

and finaly I have to change one line in /etc/hotplug/usb.agent
(found here 
http://forums.gentoo.org/viewtopic-t-267145-highlight-remove+usbstorage+hotplug.html)

So my devices are mounted every time in correct places, no matter in which 
order connected/disconnected, and unmounted after remove.

That freevo/gentoo independed, but very usable :-). The freevo plugin 
usbstorage works with only one problem - it shows both directoris when one 
device is connected..

Bye Tonous

On Thursday 03 of March 2005 18:46, Eric Jorgensen wrote:
> On Thu, 03 Mar 2005 06:52:59 +
>
> Karl Lattimer <[EMAIL PROTECTED]> wrote:
> > I'm gonna be writing ipod sync scripts anyway just to make my life
> > easier so there's my contribution. I'm not sure about the automounter,
> > although would magicdev do this?? or is it closer to hal?
>
>the hotplug daemon can do this sort of thing. you could also use a
> kernel automounter.
>
>In life, you find it's not the mount but the umount that gets ya.
>
>Let me know what you come up with, I've considered doing something like
> this for my cheezy MuVo2, which has the crummiest UI on earth, and thus
> needs a static playlist - something I've never bothered to use with my
> iriver slim-x.
>
>
> ---
> 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] localization of time

2005-02-25 Thread tonous
On Monday 21 of February 2005 20:48, Jesper Mathiassen wrote:
> > and everything in freevo is localized to czech except time strings - in
> > plugin.activate('idlebar.clock') and tv - scheduled recording overview
> > and recording menu - there is I suggest LANG=C used (ie. at 10:00PM)
> >
> > Any idea how to fix it? I trye'd to find it from the code, but to be
> > honest I get lost, or if I uderstand it right comes from some
> > standard python time library?
> > regards Tonous
>
> I have the same problem with da_DK.UTF-8 , Danish, however the
> idlebar.clock is pretty easily fixed using:
> plugin.activate('idlebar.clock', level=40, args=('%a d. %d, %H:%M', ))
> - Styx
Yes it could help a bit, but I still don't know if is this misconfiguration of 
something or feature?

Tonous



---
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] localization of time

2005-02-21 Thread tonous
Hello,
I have freevo-1.53 on gentoo with 
LANG=cs_CZ.UTF-8
locales -a shows
C
cs_CZ
cs_CZ.iso88592
cs_CZ.utf8
czech
en_US
en_US.iso88591
en_US.utf8
POSIX

and everything in freevo is localized to czech except time strings - in 
plugin.activate('idlebar.clock') and tv - scheduled recording overview and 
recording menu - there is I suggest LANG=C used (ie. at 10:00PM)

Any idea how to fix it? I trye'd to find it from the code, but to be honest I 
get lost, or if I uderstand it right comes from some standard python time 
library?

regards Tonous



---
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] Freevo Bootsplash

2005-02-14 Thread tonous

Nice and simple, but may I ask for version without distro logo/or gentoo logo? 
Tonous

On Sunday 13 of February 2005 18:59, Stefan Lange-Hegermann wrote:
> Hi!
> For those of you, who sometimes have to reboot the Freevo box I made a
> Freevo/Debian bootsplash (in 800x600 an 1024x768) available here:
>
> http://www.blackmac.de/stuff/freevodebian.tar.gz
>
> The silent one does not have a progress bar, because I figured the bar
> from Freevo itself starting up would be enough.
>
> Stefan


---
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] mencoder-stderr.log: File not found: 'frameno.avi'

2005-02-01 Thread tonous
On Monday 31 of January 2005 1:10, E. Smith wrote:
> I'm setting up Freevo 1.5.1 in Gentoo.
>
> I can't seem to get it to record. I get this in my
> /var/log/freevo/mencoder-stderr.log:
I had same problem on gentoo without OSS support compiled, try to compile with 
+oss and also set ALSA to support OSS if you use it.

bue Tonous


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Re: Welcome to the "Freevo-users" mailing list

2004-12-29 Thread tonous
On Wednesday 29 of December 2004 19:46, 
[EMAIL PROTECTED] wrote:
> Welcome to the Freevo-users@lists.sourceforge.net mailing list!
>
> To post to this list, send your email to:
>
>   freevo-users@lists.sourceforge.net
>
> General information about the mailing list is at:
>
>   https://lists.sourceforge.net/lists/listinfo/freevo-users
>
> If you ever want to unsubscribe or change your options (eg, switch to
> or from digest mode, change your password, etc.), visit your
> subscription page at:
>
>   https://lists.sourceforge.net/lists/options/freevo-users/tonous%40dkm.cz
>
>
> You can also make such adjustments via email by sending a message to:
>
>   [EMAIL PROTECTED]
>
> with the word `help' in the subject or body (don't include the
> quotes), and you will get back a message with instructions.
>
> You must know your password to change your options (including changing
> the password, itself) or to unsubscribe.  It is:
>
>   654321
>
> If you forget your password, don't worry, you will receive a monthly
> reminder telling you what all your lists.sourceforge.net mailing list
> passwords are, and how to unsubscribe or change your options.  There
> is also a button on your options page that will email your current
> password to you.
>
> You may also have your password mailed to you automatically off of the
> Web page noted above.


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users