> It seems as if this file is only updated, when a user opens the TV-Guide
> inside of freevo. That would mean:
Damn, you're right. I didn't run into that because of my daily freevo use.
So there is one more problem we can't solve the native way. But we
_can_ solve this (bash supports socket communication), again not very 
stylishly:

Enable Freevo network remote access:

ENABLE_NETWORK_REMOTE = 1
REMOTE_CONTROL_HOST = '127.0.0.1'
REMOTE_CONTROL_PORT = 16310

Add something like this to the bash script right before it starts reading the 
upsoon file:

# show main menu 
echo -e -n 'MENU' >/dev/udp/127.0.0.1/16310
# go up, 10 times should be enough even with all main menu plugins activated
for i in 1 2 3 4 5 6 7 8 9 10
        do
                echo -e -n 'UP' >/dev/udp/127.0.0.1/16310
        done
# open TV menu, upsoon file gets refreshed
echo -e -n 'SELECT' >/dev/udp/127.0.0.1/16310

I'll update the wakeup-script tomorrow. Good night.

        Georg

-- 
Mein oeffentlicher Schluessel fuer PGP/GPG - Verschluesselung:

pub �1024D/63EB55CA 2002-11-27 Georg Kuenzel <[EMAIL PROTECTED]>
Key fingerprint = 8DA9 55C6 91FA D92D 89C3 �7C22 0A1D 790C 63EB 55CA


-------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to