Re: [Freevo-users] Help writing plugin.

2005-02-12 Thread Ryan Roth
The problem I having is that I do not know how to create sub-menus off 
the rooms.  How do you add a sub menu?


---
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] Help writing plugin.

2005-02-12 Thread mplayer

My first idea is that MenuItem needs
to return a function that builds a new Item.
You might need to create a blank Item
class (no functions) and then dynamically create those functions using
the lamda operator.
That's the most extensible.  Or
you could just have 3 Item subclasses, which would be less confusing to
create.

eg. 
ha_menu_items[1] = ControlItem()
ControlItem.createMenu = lamda(menuCreateFunction(device[1])

class ControItem():
        def __init__(self,
parent):
               Item.__init__(self,parent)


Rande



I've made a good deal more progress, thanks alot to
Rande.  Its all 
working now except for I still have not figured out how to tuck things

into sub menus.

 Heres my current local_conf.py layout:

 begin config 

HA_ITEMS = [ ("Living Room",(
                ("Corner Light",(
                    
   ("On","command to run when On is selected from

menu"),
                    
   ("Off","command"),
                    
   ("Dim","command")
                    
   )),
                ("Ceiling
Fan",(
                    
   ("On","command"),
                    
   ("Off","command")
                    
   )),
                ("TV",(
                    
   ("On","command"),
                    
   ("Off","command")
                    
   ))
                    
   )),
             ("Bedroom",(
                ("Ceiling
Lights",(
                    
   ("On","command"),
                    
   ("Off","command"),
                    
   ("Dim","command")
                    
   )),
                ("Table Lamp",(
                    
   ("On","command"),
                    
   ("Off","command"),
                    
   ("Dim","command")
                    
   ))
                    
   )) ]

 end config 
and here is my automatedhouse.py code so far:

 begin code 

import os
import sys
import menu
import config

from gui import ConfirmBox
from item import Item
from plugin import MainMenuPlugin

class HomeAutomationItem(Item):

        def __init__(self, parent):
                Item.__init__(self,parent)
                self.name = _(
'Home Automation' )
        def config(self):
                return [('HA_ITEMS',
                 [ ("Living
Room", "Corner Light","On,Off,Dim"),
                   ("Bedroom",
"Ceiling Lights","On,Off,Dim") ],
                "Home automation
items")]
        def actions(self):
                items = [(self.createMenu,
_('Home Automation'))]
                return items

        def createMenu(self, arg=None, menuw=None):
                ha_menu_items=[]

                for room in config.HA_ITEMS:
                    
   ha_menu_items+=[menu.MenuItem(room[0])]
                    
   for device in room[1]:
                    
           ha_menu_items+=[menu.MenuItem(device[0])]
                    
           for control in device[1]:
                    
                   
ha_menu_items+=[menu.MenuItem(control[0],os.system(control[1]))]
                ha_menu=menu.Menu("Home
Automation", ha_menu_items)
                menuw.pushmenu(ha_menu)
                menuw.refresh()

class PluginInterface(MainMenuPlugin):
    def items(self, parent):
        return [ HomeAutomationItem(parent) ]

 end code 








---
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] Help writing plugin.

2005-02-11 Thread Ryan Roth
I've made a good deal more progress, thanks alot to Rande.  Its all 
working now except for I still have not figured out how to tuck things 
into sub menus.

Heres my current local_conf.py layout:
 begin config 
HA_ITEMS = [ ("Living Room",(
   ("Corner Light",(
   ("On","command to run when On is selected from 
menu"),
   ("Off","command"),
   ("Dim","command")
   )),
   ("Ceiling Fan",(
   ("On","command"),
   ("Off","command")
   )),
   ("TV",(
   ("On","command"),
   ("Off","command")
   ))
   )),
("Bedroom",(
   ("Ceiling Lights",(
   ("On","command"),
   ("Off","command"),
   ("Dim","command")
   )),
   ("Table Lamp",(
   ("On","command"),
   ("Off","command"),
   ("Dim","command")
   ))
   )) ]

 end config 
and here is my automatedhouse.py code so far:
 begin code 
import os
import sys
import menu
import config
from gui import ConfirmBox
from item import Item
from plugin import MainMenuPlugin
class HomeAutomationItem(Item):
   def __init__(self, parent):
   Item.__init__(self,parent)
   self.name = _( 'Home Automation' )
   def config(self):
   return [('HA_ITEMS',
[ ("Living Room", "Corner Light","On,Off,Dim"),
  ("Bedroom", "Ceiling Lights","On,Off,Dim") ],
   "Home automation items")]
   def actions(self):
   items = [(self.createMenu, _('Home Automation'))]
   return items
   def createMenu(self, arg=None, menuw=None):
   ha_menu_items=[]
   for room in config.HA_ITEMS:
   ha_menu_items+=[menu.MenuItem(room[0])]
   for device in room[1]:
   ha_menu_items+=[menu.MenuItem(device[0])]
   for control in device[1]:
   
ha_menu_items+=[menu.MenuItem(control[0],os.system(control[1]))]
   ha_menu=menu.Menu("Home Automation", ha_menu_items)
   menuw.pushmenu(ha_menu)
   menuw.refresh()

class PluginInterface(MainMenuPlugin):
   def items(self, parent):
   return [ HomeAutomationItem(parent) ]
 end code 



---
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] Help writing plugin.

2005-02-10 Thread Ryan Roth
Can you enlighten me a little more on making sub menus,  I have the loop 
down, but I can't figure out how to add submenus effectivly.  Thanks 
again for all of your help.

Ryan

---
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] Help writing plugin.

2005-02-10 Thread mplayer

I think it might be easier to parse
by doing it this way (tabbed for clarity, won't compile this way)
HA_ITEMS = [
                   ("Living
Room",
           
               
    ( 
           
               
            ("Corner
Light", ("On","Off","Dim")),
           
               
            ("Ceiling
Fan", ("On","Off")),
           
               
            ("TV",("On","Off","Dim"))
           
               
    ),
               
   ("Bedroom", 
           
               
    (
           
               
            ("Ceiling
Lights",("On","Off","Dim"))
           
               
    ),
                   ("Bedroom",
           
               
    (
           
               
            ("Table
Lamp",("On","Off","Dim"))
           
               
    )
                    ]

Then you can just do 'for' loops.
eg, 
for room in config.HA_ITEMS:
        for
device in room:
         
      for control in device:






After looking at other plugins I think I will pull
my config from 
local_config.py like the rest do, somethin like:

HA_ITEMS = [
                   ("Living
Room", "Corner Light","On,Off,Dim"),
                   ("Living
Room", "Ceiling Fan","On,Off"),
                   ("Living
Room", "TV","On,Off"),
                   ("Bedroom",
"Ceiling Lights","On,Off,Dim")
                   ("Bedroom",
"Table Lamp","On,Off,Dim")
                    ]




---
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] Help writing plugin.

2005-02-10 Thread Ryan Roth
After looking at other plugins I think I will pull my config from 
local_config.py like the rest do, somethin like:

HA_ITEMS = [
  ("Living Room", "Corner Light","On,Off,Dim"),
  ("Living Room", "Ceiling Fan","On,Off"),
  ("Living Room", "TV","On,Off"),
  ("Bedroom", "Ceiling Lights","On,Off,Dim")
  ("Bedroom", "Table Lamp","On,Off,Dim")
   ]

---
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] Help writing plugin.

2005-02-10 Thread Ryan Roth
First I want to thank everyone for the help so far.  Here is my code so far:
 code start 
import os
import sys
import menu
import config
from gui import ConfirmBox
from item import Item
from plugin import MainMenuPlugin
class HomeAutomationItem(Item):
   def __init__(self, parent):
   Item.__init__(self,parent)
   self.name = _( 'Home Automation' )
   def actions(self):
   items = [(self.createMenu, _('Home Automation'))]
   return items
   def createMenu(self, arg=None, menuw=None):
   ha_menu_items=[]
   ha_menu_items+=[menu.MenuItem("Living 
Room",self.livingroom)]
   ha_menu_items+=[menu.MenuItem("Master 
Bedroom",self.masterbedroom)]
   ha_menu_items+=[menu.MenuItem("Office",self.office)]
   ha_menu=menu.Menu("Home Automation", ha_menu_items)
   menuw.pushmenu(ha_menu)
   menuw.refresh()
   def livingroom(self):
   return
   def masterbedroom(self):
   return
   def office(self):
   return
class PluginInterface(MainMenuPlugin):
   def items(self, parent):
   return [ HomeAutomationItem(parent) ]

 code end 
The menus work fine, but of course as you can see they are hard coded 
in.  So how can I have it read from a config file 
('/etc/freevo/homeautomation.conf') and create these menus 
automatically?  I would like my config file to look somewhat like the 
following:

[Living Room]
   [Corner Light]
   On,'command to execute when selected'
   Off,'command to execute when selected'
   Dim,'command to execute when selected'
   [Ceiling Fan]
   On,'command to execute when selected'
   Off,'command to execute when selected'
[Master Bedroom]
   [Ceiling Light]
   On,'command to execute when selected'
   Off,'command to execute when selected'
   Dim,'command to execute when selected'
[Office]
   [Wall Light]
   On,'command to execute when selected'
   Off,'command to execute when selected'
   Dim,'command to execute when selected'
My goal is to have my main menu of "Home Automation", with the sub menus 
"Living Room", "Master Bedroom", and "Office".  Then "Living Room"  
would have the options to control either the "Corner Light" or "Ceiling 
Fan" and each of those items would have their sub-options of "On" and 
"Off", and "Dim" when applicable.

Ryan

---
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] Help writing plugin.

2005-02-10 Thread mplayer

typo there - menuw.pushmenu(radio_ha)
should be - menuw.pushmenu(ha_menu)





Here's what I now have, but I'm still haing trouble,
lots of trouble.  
I'm having trouble grasping the way python works, and my local B&N
has 
no books on python.
--
import os
import time
import sys
import menu
import config

from gui import ConfirmBox
from item import Item
from plugin import MainMenuPlugin

class HomeAutomationItem(Item):
        def actions(self):
                items = [(self.createMenu,
_('Home Automation'))]
                return items

        def createMenu(self, arg=None, menuw=None):
                ha_menu_items=[]
                ha_menu_items+=[menu.MenuItem("Living

Room",self.livingroom)]
                ha_menu_items+=[menu.MenuItem("Master

Bedroom",self.masterbedroom)]
                ha_menu_items+=[menu.MenuItem("Office",self.office)]
                ha_menu=menu.Menu("Home
Automation", ha_menu_items)
                menuw.pushmenu(radio_ha)
                menuw.refresh()

class PluginInterface(MainMenuPlugin):
    def items(self, parent):
        return [ HomeAutomationItem(parent) ]
--

Thanks, Ryan

[EMAIL PROTECTED] wrote:

>
> Ryan, within your mainMenu item, you'll need something like the below

> (chopped from my shoutcast plugin - see the dev archives for a full

> copy).
> It's all to do with the actions function.  here you can choose
whether 
> to create another submenu or to actually do something.
>
>
>
> def actions(self):
>         return [(self.createMenu,'Web Radio')]
>
> def createMenu(self, arg=None, menuw=None):
>         radio_menu_items=[]
>         radio_menu_items+=[menu.MenuItem("Top20",self.top20)]
>         radio_menu_items+=[menu.MenuItem("Genre",self.genre)]
>         radio_menu_items+=[menu.MenuItem("Search",self.searchPB)]
>         radio_menu=menu.Menu("Web Radio",
radio_menu_items)
>         menuw.pushmenu(radio_menu)
>         menuw.refresh()
>
>
> Rande
>
>
>
>
> Here is the little that I have been able to figure out.  I am
able to
> create a main menu item, and I know how to shell a command, but I
cannot
> create sub menus, and I don't have a clue on how to read and generate
it
> from a config file.  Any help would be appreciated.
>
> Thank you,
>
> Ryan
>
>
>
> ---
> 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] Help writing plugin.

2005-02-10 Thread Ryan Roth
Here's what I now have, but I'm still haing trouble, lots of trouble.  
I'm having trouble grasping the way python works, and my local B&N has 
no books on python.
--
import os
import time
import sys
import menu
import config

from gui import ConfirmBox
from item import Item
from plugin import MainMenuPlugin
class HomeAutomationItem(Item):
   def actions(self):
   items = [(self.createMenu, _('Home Automation'))]
   return items
   def createMenu(self, arg=None, menuw=None):
   ha_menu_items=[]
   ha_menu_items+=[menu.MenuItem("Living 
Room",self.livingroom)]
   ha_menu_items+=[menu.MenuItem("Master 
Bedroom",self.masterbedroom)]
   ha_menu_items+=[menu.MenuItem("Office",self.office)]
   ha_menu=menu.Menu("Home Automation", ha_menu_items)
   menuw.pushmenu(radio_ha)
   menuw.refresh()

class PluginInterface(MainMenuPlugin):
   def items(self, parent):
   return [ HomeAutomationItem(parent) ]
--
Thanks, Ryan
[EMAIL PROTECTED] wrote:
Ryan, within your mainMenu item, you'll need something like the below 
(chopped from my shoutcast plugin - see the dev archives for a full 
copy).
It's all to do with the actions function.  here you can choose whether 
to create another submenu or to actually do something.


def actions(self):
return [(self.createMenu,'Web Radio')]
def createMenu(self, arg=None, menuw=None):
radio_menu_items=[]
radio_menu_items+=[menu.MenuItem("Top20",self.top20)]
radio_menu_items+=[menu.MenuItem("Genre",self.genre)]
radio_menu_items+=[menu.MenuItem("Search",self.searchPB)]
radio_menu=menu.Menu("Web Radio", radio_menu_items)
menuw.pushmenu(radio_menu)
menuw.refresh()
Rande

Here is the little that I have been able to figure out.  I am able to
create a main menu item, and I know how to shell a command, but I cannot
create sub menus, and I don't have a clue on how to read and generate it
from a config file.  Any help would be appreciated.
Thank you,
Ryan

---
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] Help writing plugin.

2005-02-10 Thread mplayer

Ryan, within your mainMenu item, you'll
need something like the below (chopped from my shoutcast plugin - see the
dev archives for a full copy).
It's all to do with the actions function.
 here you can choose whether to create another submenu or to actually
do something.



def actions(self):
        return [(self.createMenu,'Web
Radio')]

def createMenu(self, arg=None, menuw=None):
        radio_menu_items=[]
        radio_menu_items+=[menu.MenuItem("Top20",self.top20)]
        radio_menu_items+=[menu.MenuItem("Genre",self.genre)]
        radio_menu_items+=[menu.MenuItem("Search",self.searchPB)]
        radio_menu=menu.Menu("Web
Radio", radio_menu_items)
        menuw.pushmenu(radio_menu)
        menuw.refresh()


Rande




Here is the little that I have been able to figure out.  I am able
to 
create a main menu item, and I know how to shell a command, but I cannot

create sub menus, and I don't have a clue on how to read and generate it

from a config file.  Any help would be appreciated.

Thank you,

Ryan



---
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] Help writing plugin.

2005-02-09 Thread Ryan Roth
I'm trying to write a home automation plugin, but there doesn't seem to 
be great documentation on using python with freevo.

What Im trying to accomplish is the following:
#1   Read from a config file, such as /etc/freevo/homeautomation.conf 
containing:

   [ROOM NAME]
  DeviceID, "Device Name"
   [Living Room]
  A1,   "Corner Light"
  A2,   "Ceiling Fan"
   [Office]
  A3,   "Ceiling Light"
   and so on.
#2   Display the configuration in a orderly fashion within freevo:
   Movies
   Music
   Home AutomationLiving RoomCorner Light
 |   |---Ceiling Fan
 |
 |--OfficeCeiling LightOn

|---Off

|---Dim

#3   Upon selecting an option such as On, Off, or Dim shell an external 
command.

Here is the little that I have been able to figure out.  I am able to 
create a main menu item, and I know how to shell a command, but I cannot 
create sub menus, and I don't have a clue on how to read and generate it 
from a config file.  Any help would be appreciated.

Thank you,
Ryan

---
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] Help with Diskless Client Setup ?

2004-11-24 Thread mikeruelle
Have you updated your mame? Recent MAME versions don't supported the old list 
info tag the games section uses. There is code in current 1.5 branch of cvs for 
freevo that fixes this. It will be in release 1.5.3 whenever that happens.

--
Michael Ruelle
[EMAIL PROTECTED]


> Version 1.5.1
> 
> I'm running freevo on multiple diskless clients, using LTSP (Linux Terminal
> Server Project).  It works fine, except for two issues which I don't know
> how to resolve.
> 
> Freevo appears to save all the various settings in /tmp/freevo.  For
> example, I want a particular skin to be saved per node, however, the
> settings are not saved.  Each time I restart freevo, the default skin
> returns, and all the caching is lost.  In this LTSP environment, the /tmp
> directory is a RAM mount directory, it's not a disk.  How do I repoint
> /tmp/freevo to use another location, for example, using $HOME.
> 
> I am also have trouble with MAME.  I believe this used to work in earlier
> releases.  When I launch any of the MAME games, Freevo appears to lose the
> reference to the $HOME environment variable.  I know that for freevo the
> $HOME is what I want it to be (I added some debug messages in the code),
> however, when the MAME game is run, the MAME game cannot find $HOME/.xmame.
> I make this claim because the game doesn't operate with the proper keyboard
> configuration settings, as defined in $HOME/.xmame/cfg.
> 
> Can anyone help me out here?
> 
> Jim
> >
> 
> 
> ---
> 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://productguide.itmanagersjournal.com/
> ___
> Freevo-users mailing list
> [EMAIL PROTECTED]
> 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://productguide.itmanagersjournal.com/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help with Diskless Client Setup ?

2004-11-24 Thread Jim Duda
Version 1.5.1

I'm running freevo on multiple diskless clients, using LTSP (Linux Terminal
Server Project).  It works fine, except for two issues which I don't know
how to resolve.

Freevo appears to save all the various settings in /tmp/freevo.  For
example, I want a particular skin to be saved per node, however, the
settings are not saved.  Each time I restart freevo, the default skin
returns, and all the caching is lost.  In this LTSP environment, the /tmp
directory is a RAM mount directory, it's not a disk.  How do I repoint
/tmp/freevo to use another location, for example, using $HOME.

I am also have trouble with MAME.  I believe this used to work in earlier
releases.  When I launch any of the MAME games, Freevo appears to lose the
reference to the $HOME environment variable.  I know that for freevo the
$HOME is what I want it to be (I added some debug messages in the code),
however, when the MAME game is run, the MAME game cannot find $HOME/.xmame.
I make this claim because the game doesn't operate with the proper keyboard
configuration settings, as defined in $HOME/.xmame/cfg.

Can anyone help me out here?

Jim
>


---
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://productguide.itmanagersjournal.com/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help Please: Time issue in freevo Tv listings.

2004-10-28 Thread mike lewis
> I am stumped. I am running knoppix 3.6 with freevo
> 1.5.2
>
Where did you get 1.5.2 from?

I'm sorry, I have not had any issue slike that, try searching this
list though, its been discussed a bunch of times..

Mick


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help Please: Time issue in freevo Tv listings.

2004-10-26 Thread wes robbins
'date' returns the correct date.
Tue Oct 26 11:32:23 MDT 2004

When I goto my website I get a listing that is listed
for +2 hours advonce. The show listed is the show that
is currently playing. For 11:30am the time is 13:30
and the show listed is the show for 11:30. MDT is my
right time zone.  

I am stumped. I am running knoppix 3.6 with freevo
1.5.2

Please Please help.

=




__
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo 


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help with Installation (Inconsistancy by ld.so)

2004-05-13 Thread Michael Nusinov
I'm running the Slackware 9.1 with the newest kernel 2.6.5 (i think) and 
when I run the install script I receieve the following message:

/home/nussy/.freevo/freevo.conf is missing, running 'freevo setup'

Inconsistency detected by ld.so: rtld.c: 1175: dl_main: Assertion 
`_rtld_local._dl_rtld_map.l_prev->l_next == _rtld_local._dl_rtld_map.l_next' 
failed!

Rerun '/home/nussy/freevo/freevo setup' to change this settings, use
the parameter --help for options.
What's this mean?  How can I fix it?  If you require any more information 
from me, let me know.

_
Best Restaurant Giveaway Ever! Vote for your favorites for a chance to win 
$1 million! http://local.msn.com/special/giveaway.asp



---
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562&alloc_id=6184&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help Playlist

2004-04-23 Thread sanjay vj

 I am new to this list and I would like to know Is it
possible to save the playlist in Freevo if so how can
it be done [any changes to conf file] also how to
delete files.

Regards,
Sanjay Kumar J




__
Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25¢
http://photos.yahoo.com/ph/print_splash


---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help: No audio with SB live when watching recorded video

2004-03-17 Thread Bearcat M. Sandor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Folks,

I'm going nuts.  I don't have the luxury of a card that supports btaudio. I 
have a AverMedia fm98 (yay).   

My soundcard is a Sound Blaster Live (original). I have the soundcard 
connected to the tv via the patch cable we all know and love.

Following the instructions of the Recording Info of the wikki, I am using the 
Alsa script provided there.  The last few lines in my script are:

$AMIXER -q cset numid=63 87   #This SHOULD set the capture vilume, right?
$AMIXER -q cset numid=61 4  # select capture source, 30 is capture source 
control, 1 = CD and 4 = line 
$AMIXER -q cset numid=62 1  # set capture source switch to 1 (= on) 

looking at my alsa.state file I see (I've tried 0-7 on control 61):

control.61 {
comment.access 'read write'
comment.type ENUMERATED
comment.item.0 Mic
comment.item.1 CD
comment.item.2 Video
comment.item.3 Aux
comment.item.4 Line
comment.item.5 Mix
comment.item.6 'Mix Mono'
comment.item.7 Phone
iface MIXER
name 'Capture Source'
value.0 'Mix Mono'
value.1 'Mix Mono'
}
control.62 {
comment.access 'read write'
comment.type BOOLEAN
iface MIXER
name 'Capture Switch'
value true
}
control.63 {
comment.access 'read write'
comment.type INTEGER
comment.range '0 - 15'
iface MIXER
name 'Capture Volume'
value.0 0
value.1 0


Does anyone else have a sound blaster live set up like this? I can hear sound 
while I'm recording and watching tv..why not when I play it back?

If I can't get this working, I'll have to get another sound card. Looking 
around ebay I see that I can get a Hauppauge WinTv for around $10-20.  Do all 
PCI hauppauge work with btaudio? I couldn't find a listing of the ones that 
do and a lot of the ebay listings don't tell you what model numbers they are. 

Thanx,

Bearcat
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAWR2oya+RPo9ly58RAlRRAKCVgQS5/N5vp/t0bbSFawBVePCBqQCeKd3K
7eQY3cWObEdklrcXAaoVP9k=
=z6Rc
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] help with matrox g400 and directfb?

2004-01-30 Thread William Morgan
Excerpts (reformatted) from Zeratul's mail of 27 Jan 2004 (EST):
> I have freevo running on a G400 Max, and was wondering ...
> 
> Why would you want to use directfb or dfbmga ? (just curious)
> Does it give you better performance or features than -vo mga ?

I dunno. I was using directfb because that was the wisdom of the
ancestors passed down to me. I just tried mga and I get a blank screen
(though CPU usage seems roughly the same), so that's one reason. :)

I'm sure the mplayer folks would be able to answer this question.

-- 
William <[EMAIL PROTECTED]>


---
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] help with matrox g400 and directfb?

2004-01-27 Thread Zeratul
I have freevo running on a G400 Max, and was wondering ...

Why would you want to use directfb or dfbmga ? (just curious)
Does it give you better performance or features than -vo mga ?
I simply use -vo mga and it works perfectly, both on screen and tv-out
My duron 700 can even to realtime divx recording at acceptable 
resolution (400x300)

Zeratul

Youri van Gorselen wrote:

I saw it on the list great work and so fast sweet! :)

Still it's working here so i'm not gonna bother trying with the CVS version
now unless there is a good reason to switch from 20>21 :)
Youri

- Original Message - 
From: "William Morgan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 26, 2004 11:32 PM
Subject: Re: [Freevo-users] help with matrox g400 and directfb?

 

Excerpts (reformatted) from William Morgan's mail of 26 Jan 2004 (EST):
   

Ah, thanks for the hint! I gave up on the CVS version and got DirectFB
0.9.20 to work, but it was difficult. I had to
 

Incidentally, the directfb guys just provided a patch for getting
MPlayer-1.0pre3 to work with CVS DirectFB (it was a very small naming
problem), obsoleting all of my efforts. :)
But hey, now it works (still).

--
William <[EMAIL PROTECTED]>
---
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
   



---
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
 



---
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] help with matrox g400 and directfb?

2004-01-26 Thread Youri van Gorselen
I saw it on the list great work and so fast sweet! :)

Still it's working here so i'm not gonna bother trying with the CVS version
now unless there is a good reason to switch from 20>21 :)

Youri

- Original Message - 
From: "William Morgan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 26, 2004 11:32 PM
Subject: Re: [Freevo-users] help with matrox g400 and directfb?


> Excerpts (reformatted) from William Morgan's mail of 26 Jan 2004 (EST):
> > Ah, thanks for the hint! I gave up on the CVS version and got DirectFB
> > 0.9.20 to work, but it was difficult. I had to
>
> Incidentally, the directfb guys just provided a patch for getting
> MPlayer-1.0pre3 to work with CVS DirectFB (it was a very small naming
> problem), obsoleting all of my efforts. :)
>
> But hey, now it works (still).
>
> -- 
> William <[EMAIL PROTECTED]>
>
>
> ---
> 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
>



---
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] help with matrox g400 and directfb?

2004-01-26 Thread William Morgan
Excerpts (reformatted) from William Morgan's mail of 26 Jan 2004 (EST):
> Ah, thanks for the hint! I gave up on the CVS version and got DirectFB
> 0.9.20 to work, but it was difficult. I had to

Incidentally, the directfb guys just provided a patch for getting
MPlayer-1.0pre3 to work with CVS DirectFB (it was a very small naming
problem), obsoleting all of my efforts. :)

But hey, now it works (still).

-- 
William <[EMAIL PROTECTED]>


---
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] help with matrox g400 and directfb?

2004-01-26 Thread William Morgan
Excerpts (reformatted) from Youri van Gorselen's mail of 26 Jan 2004 (EST):
> > There are definitely weird interactions with the Debian provision of
> > /usr/include/linux (from the linux-kernel-headers package) and
> > DirectFB 0.9.20, but even if I manually point /usr/include/linux and
> > /usr/include/asm to the kernel 2.4.24 directories, I get compile
> > errors with 0.9.20.
> 
> That worked for me, with some minor changes. I think there were 3
> stupid lines i had to uncomment. If u can post your error messages I
> might be able to help u out.

Ah, thanks for the hint! I gave up on the CVS version and got DirectFB
0.9.20 to work, but it was difficult. I had to

a) replace the Debian-supplied headers in /usr/include/{linux,asm} with 
   the ones from 2.4.24; and 
b) hide /usr/include/linux/wm97xx.h to prevent DirectFB from trying to
   compile WM97xx Touchscreen support (no configure option for this afaik).

But then compiling it and MPlayer-1.0pre3 both works, and mplayer can
now play with -vo dfbmga:bes. Sweet!

Next question: in playing DVDs mplayer seems to take about 40% CPU (with
no sound---haven't gotten that working yet), but sometimes gives me the
"your system is too SLOW to play this" message. I'm running an Athlon
XP 2200 which, while not lighting speed, is surely sufficient to play a
DVD. Is this comparable to what you and others are getting?

Anways, thanks for your help,

-- 
William <[EMAIL PROTECTED]>


---
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] help with matrox g400 and directfb?

2004-01-26 Thread Michael Medin




Not that I really know but I have a G450 and had alot of trouble
setting the card up to work with my TV, untill I found SDL and then it
all worked fine somehow :)
Might wanna give it a shot I found it alot simpler to setup then
DirectFB, but I have virtually zero linux/gfx experience.


// MickeM



Youri van Gorselen wrote:

  I think u have CONFIG_MATROX_MAVEN in your kernel compiled. Remove it and
that error is gone :)

See http://www.saunalahti.fi/~syrjala/directfb/Matrox_TV-out_README.txt for
more info about what to compile and what not.

Good luck.

Youri.

P.S. I had the same error with CVS version as well. 9.20 seems to fixed it
tho. And if u can't compile it like u said. Look if /usr/include/linux is
setup correctly. I'm running 2.4.24 with G400clock 32mb and multi patch
however i couldn't get directfb to compile with -multi but that's not a big
deal with freevo.


- Original Message - 
From: "William Morgan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 26, 2004 3:21 PM
Subject: [Freevo-users] help with matrox g400 and directfb?


  
  
Hi all,

I'm trying to get my g400 to do TV out with directfb. When I run
mplayer with -vo dfgbmga, I get the following output:

   -- DirectFB v0.9.21 -
 (c) 2000-2002  convergence integrated media GmbH
 (c) 2002-2003  convergence GmbH
---

(*) Single Application Core. (with MMX support) (2004-01-25 08:34)
(*) DirectFB/misc/memcpy: using MMXEXT optimized memcpy()
(*) DirectFB/InputDevice: Keyboard 0.9 (convergence integrated media GmbH)
(*) MMX detected and enabled
(*) DirectFB/GraphicsDevice: Matrox G400/G450/G550 0.6 (convergence

  
  integrated media GmbH)
  
  
(!) DirectFB/Matrox/Maven: Error controlling `/dev/i2c-2'!
--> Device or resource busy
(!) DirectFB/Core/layers: Failed to initialize layer 2!
(!) DirectFB/Core: Could not initialize 'layers' core!
--> Resource in use (busy)!
vo_dfbmga: DirectFBCreate() failed - Resource in use (busy)!
Error opening/initializing the selected video_out (-vo) device.


I'm using MPlayer 1.0pre3-3.3.2 which I compiled against a CVS version
(yesterday's) of DirectFB---I couldn't get 0.9.20 to compile.

This is on a stock 2.4.24 kernel (no multi patch applied) and

  
  /proc/bus/i2c
  
  
looks like this:

2c-0   i2c DDC:fb0 #0 on i2c-matroxfb  Bit-shift algorithm
i2c-1   i2cDDC:fb0 #1 on i2c-matroxfb  Bit-shift algorithm
i2c-2   i2cMAVEN:fb0 on i2c-matroxfb   Bit-shift algorithm

Any ideas? I'd love to start using Freevo soon but I'm pretty stuck.

(Incidentally I couldn't get matroxset to even compile... this is on a

  
  Debian
  
  
testing machine.)

Thanks in advance,

-- 
William <[EMAIL PROTECTED]>


---
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


  
  


---
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] help with matrox g400 and directfb?

2004-01-26 Thread Youri van Gorselen
> Excerpts (reformatted) from Youri van Gorselen's mail of 26 Jan 2004
(EST):
> > I think u have CONFIG_MATROX_MAVEN in your kernel compiled. Remove it
and
> > that error is gone :)
>
> Well, I had tried that previously, and this is what I got (I actually have
it
> as a module at this point):
>
>   (*) Single Application Core. (with MMX support) (2004-01-25 08:34)
>   (*) DirectFB/misc/memcpy: using MMXEXT optimized memcpy()
>   (*) DirectFB/InputDevice: Keyboard 0.9 (convergence integrated media
GmbH)
>   (*) MMX detected and enabled
>   (*) DirectFB/GraphicsDevice: Matrox G400/G450/G550 0.6 (convergence
integrated media GmbH)
>   Can't get CRTC2 layer - Not supported!
>   Error opening/initializing the selected video_out (-vo) device.
>
> So both ways give me an error. I'm beginning suspect at this point that
this
> is a problem with DirectFB, so I will ask on their list.

Same thoughts here too. Had same problem with CVS version of DirectFB.

>
> > P.S. I had the same error with CVS version as well. 9.20 seems to fixed
it
> > tho. And if u can't compile it like u said. Look if /usr/include/linux
is
> > setup correctly. I'm running 2.4.24 with G400clock 32mb and multi patch
> > however i couldn't get directfb to compile with -multi but that's not a
big
> > deal with freevo.
>
> There are definitely weird interactions with the Debian provision of
> /usr/include/linux (from the linux-kernel-headers package) and DirectFB
0.9.20,
> but even if I manually point /usr/include/linux and /usr/include/asm to
the
> kernel 2.4.24 directories, I get compile errors with 0.9.20.

That worked for me, with some minor changes. I think there were 3 stupid
lines i had to uncomment. If u can post your error messages I might be able
to help u out.

>
> Thanks for your help.

np :)

Youri

> -- 
> William <[EMAIL PROTECTED]>
>
>
> ---
> 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
>



---
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] help with matrox g400 and directfb?

2004-01-26 Thread William Morgan
Excerpts (reformatted) from Youri van Gorselen's mail of 26 Jan 2004 (EST):
> I think u have CONFIG_MATROX_MAVEN in your kernel compiled. Remove it and
> that error is gone :)

Well, I had tried that previously, and this is what I got (I actually have it
as a module at this point):

  (*) Single Application Core. (with MMX support) (2004-01-25 08:34)
  (*) DirectFB/misc/memcpy: using MMXEXT optimized memcpy()
  (*) DirectFB/InputDevice: Keyboard 0.9 (convergence integrated media GmbH)
  (*) MMX detected and enabled
  (*) DirectFB/GraphicsDevice: Matrox G400/G450/G550 0.6 (convergence integrated media 
GmbH)
  Can't get CRTC2 layer - Not supported!
  Error opening/initializing the selected video_out (-vo) device.

So both ways give me an error. I'm beginning suspect at this point that this
is a problem with DirectFB, so I will ask on their list.

> P.S. I had the same error with CVS version as well. 9.20 seems to fixed it
> tho. And if u can't compile it like u said. Look if /usr/include/linux is
> setup correctly. I'm running 2.4.24 with G400clock 32mb and multi patch
> however i couldn't get directfb to compile with -multi but that's not a big
> deal with freevo.

There are definitely weird interactions with the Debian provision of
/usr/include/linux (from the linux-kernel-headers package) and DirectFB 0.9.20,
but even if I manually point /usr/include/linux and /usr/include/asm to the
kernel 2.4.24 directories, I get compile errors with 0.9.20.

Thanks for your help.

-- 
William <[EMAIL PROTECTED]>


---
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] help with matrox g400 and directfb?

2004-01-26 Thread Youri van Gorselen
I think u have CONFIG_MATROX_MAVEN in your kernel compiled. Remove it and
that error is gone :)

See http://www.saunalahti.fi/~syrjala/directfb/Matrox_TV-out_README.txt for
more info about what to compile and what not.

Good luck.

Youri.

P.S. I had the same error with CVS version as well. 9.20 seems to fixed it
tho. And if u can't compile it like u said. Look if /usr/include/linux is
setup correctly. I'm running 2.4.24 with G400clock 32mb and multi patch
however i couldn't get directfb to compile with -multi but that's not a big
deal with freevo.


- Original Message - 
From: "William Morgan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 26, 2004 3:21 PM
Subject: [Freevo-users] help with matrox g400 and directfb?


> Hi all,
>
> I'm trying to get my g400 to do TV out with directfb. When I run
> mplayer with -vo dfgbmga, I get the following output:
>
>-- DirectFB v0.9.21 -
>  (c) 2000-2002  convergence integrated media GmbH
>  (c) 2002-2003  convergence GmbH
> ---
>
> (*) Single Application Core. (with MMX support) (2004-01-25 08:34)
> (*) DirectFB/misc/memcpy: using MMXEXT optimized memcpy()
> (*) DirectFB/InputDevice: Keyboard 0.9 (convergence integrated media GmbH)
> (*) MMX detected and enabled
> (*) DirectFB/GraphicsDevice: Matrox G400/G450/G550 0.6 (convergence
integrated media GmbH)
> (!) DirectFB/Matrox/Maven: Error controlling `/dev/i2c-2'!
> --> Device or resource busy
> (!) DirectFB/Core/layers: Failed to initialize layer 2!
> (!) DirectFB/Core: Could not initialize 'layers' core!
> --> Resource in use (busy)!
> vo_dfbmga: DirectFBCreate() failed - Resource in use (busy)!
> Error opening/initializing the selected video_out (-vo) device.
>
>
> I'm using MPlayer 1.0pre3-3.3.2 which I compiled against a CVS version
> (yesterday's) of DirectFB---I couldn't get 0.9.20 to compile.
>
> This is on a stock 2.4.24 kernel (no multi patch applied) and
/proc/bus/i2c
> looks like this:
>
> 2c-0   i2c DDC:fb0 #0 on i2c-matroxfb  Bit-shift algorithm
> i2c-1   i2cDDC:fb0 #1 on i2c-matroxfb  Bit-shift algorithm
> i2c-2   i2cMAVEN:fb0 on i2c-matroxfb   Bit-shift algorithm
>
> Any ideas? I'd love to start using Freevo soon but I'm pretty stuck.
>
> (Incidentally I couldn't get matroxset to even compile... this is on a
Debian
> testing machine.)
>
> Thanks in advance,
>
> -- 
> William <[EMAIL PROTECTED]>
>
>
> ---
> 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
>



---
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] help with matrox g400 and directfb?

2004-01-26 Thread William Morgan
Hi all,

I'm trying to get my g400 to do TV out with directfb. When I run
mplayer with -vo dfgbmga, I get the following output:

   -- DirectFB v0.9.21 -
 (c) 2000-2002  convergence integrated media GmbH
 (c) 2002-2003  convergence GmbH
---
 
(*) Single Application Core. (with MMX support) (2004-01-25 08:34)
(*) DirectFB/misc/memcpy: using MMXEXT optimized memcpy()
(*) DirectFB/InputDevice: Keyboard 0.9 (convergence integrated media GmbH)
(*) MMX detected and enabled
(*) DirectFB/GraphicsDevice: Matrox G400/G450/G550 0.6 (convergence integrated media 
GmbH)
(!) DirectFB/Matrox/Maven: Error controlling `/dev/i2c-2'!
--> Device or resource busy
(!) DirectFB/Core/layers: Failed to initialize layer 2!
(!) DirectFB/Core: Could not initialize 'layers' core!
--> Resource in use (busy)!
vo_dfbmga: DirectFBCreate() failed - Resource in use (busy)!
Error opening/initializing the selected video_out (-vo) device.


I'm using MPlayer 1.0pre3-3.3.2 which I compiled against a CVS version
(yesterday's) of DirectFB---I couldn't get 0.9.20 to compile.

This is on a stock 2.4.24 kernel (no multi patch applied) and /proc/bus/i2c
looks like this:

2c-0   i2c DDC:fb0 #0 on i2c-matroxfb  Bit-shift algorithm
i2c-1   i2cDDC:fb0 #1 on i2c-matroxfb  Bit-shift algorithm
i2c-2   i2cMAVEN:fb0 on i2c-matroxfb   Bit-shift algorithm

Any ideas? I'd love to start using Freevo soon but I'm pretty stuck.

(Incidentally I couldn't get matroxset to even compile... this is on a Debian
testing machine.)

Thanks in advance,

-- 
William <[EMAIL PROTECTED]>


---
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] Help on tiny_osd plugin

2004-01-14 Thread gawen



When i activate the plugin freevo writes this to 
the logfile:
 
failed to load plugin plugin.tiny_osdstart 
'freevo plugins -l' to get a list of pluginsTraceback (most recent call 
last):  File "/usr/lib/python2.2/site-packages/freevo/plugin.py", line 
473, in __load_plugin__    p = eval(object)()  File 
"", line 0, in ?AttributeError: 'module' object has no 
attribute 'tiny_osd'
 
 
Any ideas? thanks
Bruno


[Freevo-users] help sought on debugging mysterious dies of freevo main in 1.4.1

2004-01-11 Thread Paul Sijben
last night it happend again, at 21.44 the main freevo thread died, from
then on it no longer updated the LCD screen, the TV screen or wrote
anything to the main log.

No one was in the house and nothing is showing in the system logs, no
recordings were scheduled. Looks like it died without any event
impacting on it.

I have already turned the debug level to 10 but this is not telling me
anything in this case.

Can someone please help me track this down so it can be fixed? Or is
this fixed in CVS?

best regards,

Paul Sijben


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help setting up Australian TV channels

2004-01-02 Thread Carson
Matt McLeod wrote:
Carson wrote:

There does not appear to be a XMLTV grabber for Australia, so cannot get 
that going.


http://www.onlinetractorparts.com.au/rohbags/

The results are a bit weird with programmes that run through
midnight -- the data source splits most of them into two and
the script doesn't try to clean that up -- but otherwise it
works fine.
Matt

It appears that the grabber at that site is no longer available?

Andrew



---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help setting up Australian TV channels

2004-01-02 Thread Matt McLeod
Carson wrote:
> There does not appear to be a XMLTV grabber for Australia, so cannot get 
> that going.

http://www.onlinetractorparts.com.au/rohbags/

The results are a bit weird with programmes that run through
midnight -- the data source splits most of them into two and
the script doesn't try to clean that up -- but otherwise it
works fine.

Matt

-- 
  SUSPICION BREEDS CONFIDENCE


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help setting up Australian TV channels

2004-01-02 Thread Carson
I need some help setting up tv channels in Freevo for Sydney, Australia.

I'm running Gentoo Linux Kernel 2.4.22-ac
I have a BT878(Leadtek WinFast 2000)video capture card.
I have tvtime running OK, and am able to view and change all the local 
TV stations.

There does not appear to be a XMLTV grabber for Australia, so cannot get 
that going.

I would just like to add the local TV stations to Freevo.

Can someone help me, point to me to a relevant posting, or send me their 
configuration.



---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help! How to stop screen blanking!

2003-12-07 Thread Murray Shields
Robert Winder wrote:

Saturday, December 6, 2003, 6:00:59 AM, Murray wrote:
 


/usr/X11R6/bin/xinit /root/freevo.start -- /usr/X11R6/bin/X -xf86config
/etc/X11/XF86Config bc -screen NVTVOUT vt8
/root/freevo.stop
   

try it with bc -s off -dpms. Works for me.
 

Works for me too! Thanks!

and freevo.stop contains:
shutdown -h now
   

Not necessary anymore shutdown is integrated within freevo and you can
enable it in local_conf.py like this.
CONFIRM_SHUTDOWN= 1   # ask before shutdown
ENABLE_SHUTDOWN_SYS = 1 
 

Fully aware of that... but I find the script is easier to change and I 
can to more "after" tasks (such as a reboot) when i am doing testing and 
so on...

/Robert

 

Murray.



---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 5/12/2003
Tested on: 7/12/2003 10:43:39 PM
avast! is copyright (c) 2000-2003 ALWIL Software.
http://www.avast.com




---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help! How to stop screen blanking!

2003-12-06 Thread Robert Winder


Saturday, December 6, 2003, 6:00:59 AM, Murray wrote:

> On boot my lounge room [pc boots up Freevo, but screen blanking comes on
> after 20 mins or so... i start freevo as follows:

> /usr/X11R6/bin/xinit /root/freevo.start -- /usr/X11R6/bin/X -xf86config
> /etc/X11/XF86Config bc -screen NVTVOUT vt8
> /root/freevo.stop

try it with bc -s off -dpms. Works for me.

> where freevo.start contains:
> #!/bin/sh
> /usr/bin/freevo

> and freevo.stop contains:
> shutdown -h now

Not necessary anymore shutdown is integrated within freevo and you can
enable it in local_conf.py like this.

CONFIRM_SHUTDOWN= 1   # ask before shutdown
ENABLE_SHUTDOWN_SYS = 1 

/Robert





  
 



---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help! How to stop screen blanking!

2003-12-05 Thread Murray Shields
On boot my lounge room [pc boots up Freevo, but screen blanking comes on 
after 20 mins or so... i start freevo as follows:

/usr/X11R6/bin/xinit /root/freevo.start -- /usr/X11R6/bin/X -xf86config 
/etc/X11/XF86Config bc -screen NVTVOUT vt8
/root/freevo.stop

where freevo.start contains:
#!/bin/sh
/usr/bin/freevo
and freevo.stop contains:
shutdown -h now
Can someone please tell me how to disable it?

For reference my system is a Celeron 1.1 with 256Mb ram and a GC4MX440 
running Gentoo...

Murray





---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 5/12/2003
Tested on: 6/12/2003 3:01:04 PM
avast! is copyright (c) 2000-2003 ALWIL Software.
http://www.avast.com




---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] help config gamepad

2003-10-27 Thread Patricio Calderon D.
hello:

Tat this type of question does not have to go in this list of mail but that
they have
 experience with this type of hardware

As I can form gamepad of 8 bellboys in linux?  in kernel 2,2 tapeworm
problems
for this .I have debian sid (kernel 2.4.22) and es1371 that module cant load
?? for
work find gamepad.


Saludos
P.
besos



---
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] HELP URGENT - europe-west

2003-09-24 Thread Paul Cowper

Ok, i have now managed to figure that NTL broadcast a lot of their stations on the 
russian frequencys. i have run ./freevo setup --tv=PAL --chanlist=europe-west
but it creates the files but does not seem to do its job. i have searched in all 
documents for the strigh "us-cable" and "europe-west" (only the .py files) 

Weather i use Mplayer or TvTime it seems that it will always default to us-cable.

What am i doing wrong?

these are the channels i am using at the moment

TV_CHANNELS = [('69 COMEDY', 'COMEDY', '7'),
('SkyOne', 'Sky One', 'SR7'),
('Box', 'The Box', 'E5')]

The first one works fine, but i put that to test if it was using us or eu

also tvtime stays on NTSC (but that is correct in its own XML file)
but Mplayer uses PAL.

Do i need to do somthing ??

i will try restarting my machine and see if that helps!! - i must be desperate

Please help

Paul.
<>

RE: [Freevo-users] Help (was: xine not playing DVD's,Mplayer instead?)

2003-09-23 Thread keir johnson
 :(

"keir johnson" wrote:
>> I actually tried using 1.3.4, but it doesn't execute
>> properly---hangs, so I had to install only other version I had
>> downloaded which was 1.3.2.
>"Dischi" wrote:
>One common problem. 'It hangs' doesn't help much. If I don't know
>what happens, this will never change.

I installed freevo 1.3.4 fresh on RH8 from sf download page, (this was
almost 3wks ago so memory is fuzzy).  When I ran freevo, graphics were
'blocky' instead of smooth and it wouldn't respond to keyboard input.
I had to actually kill the process to shut freevo down.  So I replaced it
with the first version I had ever loaded (1.3.2)--- when I installed 1.3.4,
rh8 was a fresh install, freevo had not been loaded yet.

>> I'd like the dvd menu support that xine is supposed to use, but I'm
>> getting sick of 'fixing' each component that is necessary for freevo
>> (already worked alot to make mplayer work right).

>A second common problem: Freevo has good support for the hardware the
>developers have, they take care of it. But since I don't have more
>than one graphic card (and don't need to), users have to help
>users. You fixed each component. Good, than share your results with
>the rest. _Everyone_ has write access to the WiKi on the homepage. If
>each user shares the resultions they have, it would much easier for
>new users, Freevo could integrate this knowledge.

I was contemplating writing a summary of my procedures for install as
I'm going to almost duplicate this first system and setup a 2nd freevo
box for myself (first one for my Dad).  I considered doing this because
I've had such a hard time finding such step-by-step info.   I know the developers put a lot of blood, sweat,
and tears into coding and refining freevo, but if the info. isn't
available to help newcomers adopt freevo then your base of 'testers' that
COULD respond to your pleas for input are going to go to that same SMALL
group of developers that may be concentrating on fixing code or on their
own uses and limited hardware that they have already got trouble-shot and
working.

>Someone wrote a howto for Freevo. He asked for help to make it
>better. I guess the answers are below 10.

It would be nice to have his info linked from the freevo pages (not buried
in the documentation only but from a links page.  I know documenting is a
pain in the ass as you stated, that's why I haven't started my list of
procedures...the other reason is I don't know if each step I'm doing is
going to work or break something (and I've been very limited in spare-time
to work with this project---between my business, wife, kids, etc.)

>> I'm still facing a problem with my capture card (BT878-based) where
>> I'm only getting garbage in top inch or so of picture and no real
>> picture---that will I'm sure burn-up countless hours researching and
>> fixing whatever the problem is.

>Ask here. If you know the answer some day, please add it to the docs
>to avoid that the next one has the same problem.

I was planning on submitting a plea about the capture card next.  I've
got ZERO experience with the damn thing in linux and info. on them
has been very limited (not in freevo mind you, I'm talking linux in
general).  I was having trouble even finding how to run xawtv to see if
the card generates anything, then didn't know enough to trouble-shoot
the darn thing and submit an intelligent inquiry anywhere (freevo or
elsewhere).

This is a very challenging project for those without significant experience
in linux and the toughest part is figuring out 'where' the question should
be asked...is it too general a question to burden the freevo list with, is
it a problem in mplayer and should go to their list, is it a red hat problem
and should go to an appropriate list there, etc..

I do appreciate the effort and responses you guys have all given on my
problem and I will try to contribute where I can as 'repayment'.  I take my
hat off to you developers for working hard to create freevo from scratch and
piece this complex puzzle together.

Keir




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help (was: xine not playing DVD's,Mplayer instead?)

2003-09-22 Thread Manuel Borchers
Hi,

Am Mo, 2003-09-22 um 19.11 schrieb Robert Winder:
> > o I developed a way to detect if a disc is a DVD, VCD or SVCD. I send
> >   a mail: please test and send results. I only got 1 (!!!)
> >   answer. Lucky for you all, this answer helped to solve a bad bug. 
> 
> Hmm keep in mind that testing new cvs code isn't that easy for a user
> who want to give some feedback at this moment. Anoncvs is behind in
> fact a week ago i found out it was more then 6 days behind. But found
> my way to a snapshot but even that is 24 hours behind and sometimes
> missing important updates in the last 24 hours. But i understand your
> point.

Dischi wrote this "plugin" as a small python script to test out and
posted it to the list, so EVERYONE was able to test it right away...
Anyway, I'm glade, I could contribute to freevo in this simple way for
the first time and CVS should come back again soon (so SF told all
project admins) and then I'll come back to CVS again and maybe I could
help a bit more in testing again (need to get tvtime to work smooth and
fiddle around with xine support :)

Cheers,
Manuel

-- 
[EMAIL PROTECTED]
http://www.matronix.de - http://www.elektronik-kompendium.de/public/borchers

 19:19:41 up 1 day,  1:34,  1 user,  load average: 0.10, 0.04, 0.01



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help (was: xine not playing DVD's,Mplayer instead?)

2003-09-22 Thread Robert Winder
Monday, September 22, 2003, 5:12:33 PM, Dirk wrote:

> Hi,

> I take this posting as a mail I want to write for a long time
> now. It's not personally :-)

Thought about it for a long time if i should reply or not. But don't
take it personally ;)

>> I'd like the dvd menu support that xine is supposed to use, but I'm
>> getting sick of 'fixing' each component that is necessary for freevo
>> (already worked alot to make mplayer work right).

> A second common problem: Freevo has good support for the hardware the
> developers have, they take care of it. But since I don't have more
> than one graphic card (and don't need to), users have to help
> users. You fixed each component. Good, than share your results with
> the rest. _Everyone_ has write access to the WiKi on the homepage. If
> each user shares the resultions they have, it would much easier for
> new users, Freevo could integrate this knowledge.

Good point whenever i can or able to i do this always. But from a user
standpoint some things in freevo are complicated. In fact when
1.3.4 released i was truly amazed by the plugins i found in the
plugins dirs. Lot of them weren't documented in the wiki.
For a user it's very hard to go to the sources and understand it all.
Luckily since then plugins are know documented by developers and
users.

> In the future, I like to have some sort of auto detection. Freevo
> knows what cards you have and will setup correctly, no need to change
> the deatils. But right now, I get nearly no feedback for help
> requests. Here some examples:

> o I developed a way to detect if a disc is a DVD, VCD or SVCD. I send
>   a mail: please test and send results. I only got 1 (!!!)
>   answer. Lucky for you all, this answer helped to solve a bad bug. 

Hmm keep in mind that testing new cvs code isn't that easy for a user
who want to give some feedback at this moment. Anoncvs is behind in
fact a week ago i found out it was more then 6 days behind. But found
my way to a snapshot but even that is 24 hours behind and sometimes
missing important updates in the last 24 hours. But i understand your
point.


> o A asked for all to write a small doc for plugins. Even if you don't
>   know much about Python, you can document the plugins you use. I got
>   0 (!!!) answers.

Yeah, i added and updated some of your plugins in the wiki. ;-) But you
are probably referring to additional info in the plugins. Again not
sure how some of the plugins supposed to work.

> o A asked for a slashscreen. OK, I got one answer, but a little bit
>   more would be great.

Well i find the s(p)lashscreen awesome so that makes two. ;-)

> o And skins, this has nothing to do with Python. Help us here, we are
>   no designers.

err me either.

> Someone wrote a howto for Freevo. He asked for help to make it
> better. I guess the answers are below 10.

Make it available on the freevo site don't see a direct link somewhere
maybe in the users section.


> I (and the other developers) write some code. Documenting is a pain in
> the ass, I know, that's why most features aren't documented. 

We know.

>> (Hope that doesn't sound ungrateful, but frustration is setting
>> in--sorry)

> Same here.

not here ;-)



   /Robert 
 



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help (was: xine not playing DVD's,Mplayer instead?)

2003-09-22 Thread Dirk Meyer
Hi,

I take this posting as a mail I want to write for a long time
now. It's not personally :-)

"keir johnson" wrote:
> I actually tried using 1.3.4, but it doesn't execute
> properly---hangs, so I had to install only other version I had
> downloaded which was 1.3.2.

One common problem. 'It hangs' doesn't help much. If I don't know
what happens, this will never change.

> I'd like the dvd menu support that xine is supposed to use, but I'm
> getting sick of 'fixing' each component that is necessary for freevo
> (already worked alot to make mplayer work right).

A second common problem: Freevo has good support for the hardware the
developers have, they take care of it. But since I don't have more
than one graphic card (and don't need to), users have to help
users. You fixed each component. Good, than share your results with
the rest. _Everyone_ has write access to the WiKi on the homepage. If
each user shares the resultions they have, it would much easier for
new users, Freevo could integrate this knowledge.

In the future, I like to have some sort of auto detection. Freevo
knows what cards you have and will setup correctly, no need to change
the deatils. But right now, I get nearly no feedback for help
requests. Here some examples:

o I developed a way to detect if a disc is a DVD, VCD or SVCD. I send
  a mail: please test and send results. I only got 1 (!!!)
  answer. Lucky for you all, this answer helped to solve a bad bug. 

o A asked for all to write a small doc for plugins. Even if you don't
  know much about Python, you can document the plugins you use. I got
  0 (!!!) answers.

o A asked for a slashscreen. OK, I got one answer, but a little bit
  more would be great.

o And skins, this has nothing to do with Python. Help us here, we are
  no designers.

Someone wrote a howto for Freevo. He asked for help to make it
better. I guess the answers are below 10.


I (and the other developers) write some code. Documenting is a pain in
the ass, I know, that's why most features aren't documented. 

> I'm still facing a problem with my capture card (BT878-based) where
> I'm only getting garbage in top inch or so of picture and no real
> picture---that will I'm sure burn-up countless hours researching and
> fixing whatever the problem is.

Ask here. If you know the answer some day, please add it to the docs
to avoid that the next one has the same problem.

> (Hope that doesn't sound ungrateful, but frustration is setting
> in--sorry)

Same here.


Dischi

-- 
Please do not complain about the coffee. You'll be old and weak
someday, too!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help with Mplayer Options

2003-09-06 Thread Jim Duda
In my local_conf.py file, I have the following line:

MPLAYER_ARGS_DEF = ('-fs -idx -quiet -af volume=-10:s -display :0 -x 800 -y
600')
MPLAYER_ARGS = { 'dvd': '-cache 8192',
 'vcd': '-cache 4096',
 'cd' : '-cache 500 -cdda speed=1',
 'tv' : '-nocache',
 'avi': '-nocache -fs -idx -quiet -af volume=-10:s -display
:0 -x 800 -y 600',
 'rm' : '-cache 5000 -forceidx',
 'default': '-cache 5000'
 }

However, when I use freevo to run mplayer, I see this in the
mplayer_stdout.log file.

mplayer_stdout.log:CommandLine: '-fs' '-idx' '-quiet' '-af' 'volume=-10:s'
'-display' ':0' '-x' '800' '-y' '600' '-slave' '-ao' 'oss:/dev/dsp' '-cache'
'5000' '-v' '-vo' 'xv,sdl,x11,' '-wid' '0x01c1' '-xy' '800'
'-monitoraspect' '4:3' '/media/videos/Curb_Appeal_-Faux_Front_.avi'

The first fiew CommandLine options match what I have in my local_conf.py,
however, I
cannot figure out where the remaining options are coming from.  My avi files
are not
playing the same way as they do if I run mplayer stand-alone from the
command line.
The volume isn't correct and I get the Xwindows options border around the
video.

Can anyone help?  I'm getting the same results with 1.3.2 and 1.3.4

Jim Duda
[EMAIL PROTECTED]







---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Help!

2003-08-22 Thread fleet44
if i understand you correctly, you want to use the mplayer you compiled 
yourself and lies probably in /usr/local/bin. to use it instead of the one 
provided with freevo, just edit the line in freevo.conf which points to the 
mplayer executable

At 04:48 21.08.2003, you wrote:
Anyway to use the freevo.conf to use the mencoder in the runtime dir but 
use the mplayer that I built myself.



---
This SF.net email is sponsored by Dice.com.
Did you know that Dice has over 25,000 tech jobs available today? From
careers in IT to Engineering to Tech Sales, Dice has tech jobs from the
best hiring companies. http://www.dice.com/index.epl?rel_code=104
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


---
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help!

2003-08-21 Thread Justin Wetherell
Anyway to use the freevo.conf to use the mencoder in the runtime dir but 
use the mplayer that I built myself.



---
This SF.net email is sponsored by Dice.com.
Did you know that Dice has over 25,000 tech jobs available today? From
careers in IT to Engineering to Tech Sales, Dice has tech jobs from the
best hiring companies. http://www.dice.com/index.epl?rel_code=104
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] (HELP!) pygame.error: No available video device

2003-07-24 Thread Roh .
thanks rob!

i feel pretty dumb - it was the display variable (i was trying from ssh 
login).

i couldnt pass --display=localhost:0.0 or -display=localhost:0.0, which 
would be nice (like other x apps)
but i could export DISPLAY=localhost:0.0 and it runs! (well missing fonts 
but easily fixed)

i run all my other X apps from remote login (with --display), i dont know 
why i thought freevo was different :P (i probably should stop geeking out so 
early in the morning b4 ample coffee intake! :P )

thanks again,

Roh.

rob wrote:


You are running this from inside of X right?  Is it a local display? Can 
you run other X apps from the same prompt, like xclock?

Pygame is the basis for Freevo, not the games plugin or anything like that. 
 It is basicly the python interface to libSDL, which lets us display stuff 
to the screen. ;)

-Rob

Roh . wrote:
hey rob
thanks for trying but im still 'freevo-less' :(
i changed display in freevo.conf to x11, and exported SDL_VIDEODRIVER,

[EMAIL PROTECTED] freevo-1.3.2]# set | grep "SDL"
SDL_VIDEODRIVER=x11
[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stdin at Fri Jul 25 04:54:45 2003
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stderr at Fri Jul 25 04:54:45 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = x11"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 'CD-1')"
WARNING: DVD protection override disabled! You will not be able to play 
protected DVDs!

Traceback (most recent call last):
 File "src/main.py", line 98, in ?
   import menu# The menu widget class
 File "src/menu.py", line 92, in ?
   import skin
 File "src/skin.py", line 66, in ?
   exec('import ' + modname  + ' as skinimpl')
 File "", line 1, in ?
 File "skins/main1/skin_main1.py", line 95, in ?
   import xml_skin
 File "skins/main1/xml_skin.py", line 65, in ?
   osd = osd.get_singleton()
 File "src/osd.py", line 244, in get_singleton
   _singleton = util.SynchronizedObject(OSD())
 File "src/osd.py", line 329, in __init__
   self.depth)
pygame.error: No available video device
...same error :(

is there some way(hack) to pull pygame out?

thanks all,

roh.

rob wrote:

Do you have SDL_VIDEODRIVER exported as something wierd?

Try export SDL_VIDEODRIVER=x11 then start freevo.  Also you should change 
display in freevo.conf to be x11 not xv because using x11 tells mplayer 
to try xv first now.

-Rob

Roh . wrote:

i posted a message a few days ago but alas, no help yet :(

..im sure someone else has had this problem before, yes? (anyone?)

heres the error:

[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stdin at Tue Jul 22 06:01:56 2003
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stderr at Tue Jul 22 06:01:56 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = xv"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 
'CD-1')"

WARNING: DVD protection override disabled! You will not be able to play
protected DVDs!
Traceback (most recent call last):
  File "src/main.py", line 98, in ?
import menu# The menu widget class
  File "src/menu.py", line 92, in ?
import skin
  File "src/skin.py", line 66, in ?
exec('import ' + modname  + ' as skinimpl')
  File "", line 1, in ?
  File "skins/main1/skin_main1.py", line 95, in ?
import xml_skin
  File "skins/main1/xml_skin.py", line 65, in ?
osd = osd.get_singleton()
  File "src/osd.py", line 244, in get_singleton
_singleton = util.SynchronizedObject(OSD())
  File "src/osd.py", line 329, in __in

Re: [Freevo-users] (HELP!) pygame.error: No available video device

2003-07-24 Thread Rob Shortt
You are running this from inside of X right?  Is it a local display? 
Can you run other X apps from the same prompt, like xclock?

Pygame is the basis for Freevo, not the games plugin or anything like 
that.  It is basicly the python interface to libSDL, which lets us 
display stuff to the screen. ;)

-Rob

Roh . wrote:
hey rob
thanks for trying but im still 'freevo-less' :(
i changed display in freevo.conf to x11, and exported SDL_VIDEODRIVER,

[EMAIL PROTECTED] freevo-1.3.2]# set | grep "SDL"
SDL_VIDEODRIVER=x11
[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
--- 

Starting src/main.py:stdin at Fri Jul 25 04:54:45 2003
Logging info in /var/log/freevo/internal-main-0.log
--- 

Starting src/main.py:stderr at Fri Jul 25 04:54:45 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = x11"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 'CD-1')"
WARNING: DVD protection override disabled! You will not be able to play 
protected DVDs!

Traceback (most recent call last):
 File "src/main.py", line 98, in ?
   import menu# The menu widget class
 File "src/menu.py", line 92, in ?
   import skin
 File "src/skin.py", line 66, in ?
   exec('import ' + modname  + ' as skinimpl')
 File "", line 1, in ?
 File "skins/main1/skin_main1.py", line 95, in ?
   import xml_skin
 File "skins/main1/xml_skin.py", line 65, in ?
   osd = osd.get_singleton()
 File "src/osd.py", line 244, in get_singleton
   _singleton = util.SynchronizedObject(OSD())
 File "src/osd.py", line 329, in __init__
   self.depth)
pygame.error: No available video device
...same error :(

is there some way(hack) to pull pygame out?

thanks all,

roh.

rob wrote:

Do you have SDL_VIDEODRIVER exported as something wierd?

Try export SDL_VIDEODRIVER=x11 then start freevo.  Also you should 
change display in freevo.conf to be x11 not xv because using x11 tells 
mplayer to try xv first now.

-Rob

Roh . wrote:

i posted a message a few days ago but alas, no help yet :(

..im sure someone else has had this problem before, yes? (anyone?)

heres the error:

[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
--- 

Starting src/main.py:stdin at Tue Jul 22 06:01:56 2003
Logging info in /var/log/freevo/internal-main-0.log
--- 

Starting src/main.py:stderr at Tue Jul 22 06:01:56 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = xv"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 
'CD-1')"

WARNING: DVD protection override disabled! You will not be able to play
protected DVDs!
Traceback (most recent call last):
  File "src/main.py", line 98, in ?
import menu# The menu widget class
  File "src/menu.py", line 92, in ?
import skin
  File "src/skin.py", line 66, in ?
exec('import ' + modname  + ' as skinimpl')
  File "", line 1, in ?
  File "skins/main1/skin_main1.py", line 95, in ?
import xml_skin
  File "skins/main1/xml_skin.py", line 65, in ?
osd = osd.get_singleton()
  File "src/osd.py", line 244, in get_singleton
_singleton = util.SynchronizedObject(OSD())
  File "src/osd.py", line 329, in __init__
self.depth)
pygame.error: No available video device
this is odd because the same computer can run mplayer, xawtv and 
mythtv with no problems. system is rh8, 2.4.21, gatos xv(ati rage II 
3d/dvd+) and alsa9(sb5.1), 233MMX,128MB.

ive also tried to run freevo on another rh8 box, which is a AMD 
1G/512MB, sis6326 (PAL tv out), alsa9, and again it wont run, same 
error. and this box also runs mplayer/mythtv/xawtv no problems. Ive 
also tried with the standard X11 sis driver and same deal.

(its the full binary rele

Re: [Freevo-users] (HELP!) pygame.error: No available video device

2003-07-24 Thread Roh .
hey rob
thanks for trying but im still 'freevo-less' :(
i changed display in freevo.conf to x11, and exported SDL_VIDEODRIVER,

[EMAIL PROTECTED] freevo-1.3.2]# set | grep "SDL"
SDL_VIDEODRIVER=x11
[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stdin at Fri Jul 25 04:54:45 2003
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stderr at Fri Jul 25 04:54:45 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = x11"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 'CD-1')"
WARNING: DVD protection override disabled! You will not be able to play 
protected DVDs!

Traceback (most recent call last):
 File "src/main.py", line 98, in ?
   import menu# The menu widget class
 File "src/menu.py", line 92, in ?
   import skin
 File "src/skin.py", line 66, in ?
   exec('import ' + modname  + ' as skinimpl')
 File "", line 1, in ?
 File "skins/main1/skin_main1.py", line 95, in ?
   import xml_skin
 File "skins/main1/xml_skin.py", line 65, in ?
   osd = osd.get_singleton()
 File "src/osd.py", line 244, in get_singleton
   _singleton = util.SynchronizedObject(OSD())
 File "src/osd.py", line 329, in __init__
   self.depth)
pygame.error: No available video device
...same error :(

is there some way(hack) to pull pygame out?

thanks all,

roh.

rob wrote:
Do you have SDL_VIDEODRIVER exported as something wierd?

Try export SDL_VIDEODRIVER=x11 then start freevo.  Also you should change 
display in freevo.conf to be x11 not xv because using x11 tells mplayer to 
try xv first now.

-Rob

Roh . wrote:
i posted a message a few days ago but alas, no help yet :(

..im sure someone else has had this problem before, yes? (anyone?)

heres the error:

[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stdin at Tue Jul 22 06:01:56 2003
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stderr at Tue Jul 22 06:01:56 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = xv"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 'CD-1')"
WARNING: DVD protection override disabled! You will not be able to play
protected DVDs!
Traceback (most recent call last):
  File "src/main.py", line 98, in ?
import menu# The menu widget class
  File "src/menu.py", line 92, in ?
import skin
  File "src/skin.py", line 66, in ?
exec('import ' + modname  + ' as skinimpl')
  File "", line 1, in ?
  File "skins/main1/skin_main1.py", line 95, in ?
import xml_skin
  File "skins/main1/xml_skin.py", line 65, in ?
osd = osd.get_singleton()
  File "src/osd.py", line 244, in get_singleton
_singleton = util.SynchronizedObject(OSD())
  File "src/osd.py", line 329, in __init__
self.depth)
pygame.error: No available video device
this is odd because the same computer can run mplayer, xawtv and mythtv 
with no problems. system is rh8, 2.4.21, gatos xv(ati rage II 3d/dvd+) and 
alsa9(sb5.1), 233MMX,128MB.

ive also tried to run freevo on another rh8 box, which is a AMD 1G/512MB, 
sis6326 (PAL tv out), alsa9, and again it wont run, same error. and this 
box also runs mplayer/mythtv/xawtv no problems. Ive also tried with the 
standard X11 sis driver and same deal.

(its the full binary release - 1.3.2)

please someone - HELP!

roh.

_
Hot chart ringtones and polyphonics. Go to  
http://ninemsn.com.au/share/redir/adTrack.asp?mode=click&clientID=174&referral=Hotmail_taglines_plain&URL=http://ninemsn.com.au/mobilemania/default.asp




Re: [Freevo-users] (HELP!) pygame.error: No available video device

2003-07-23 Thread Rob Shortt
Do you have SDL_VIDEODRIVER exported as something wierd?

Try export SDL_VIDEODRIVER=x11 then start freevo.  Also you should 
change display in freevo.conf to be x11 not xv because using x11 tells 
mplayer to try xv first now.

-Rob

Roh . wrote:
i posted a message a few days ago but alas, no help yet :(

..im sure someone else has had this problem before, yes? (anyone?)

heres the error:

[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
--- 

Starting src/main.py:stdin at Tue Jul 22 06:01:56 2003
Logging info in /var/log/freevo/internal-main-0.log
--- 

Starting src/main.py:stderr at Tue Jul 22 06:01:56 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = xv"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 'CD-1')"
WARNING: DVD protection override disabled! You will not be able to play
protected DVDs!
Traceback (most recent call last):
  File "src/main.py", line 98, in ?
import menu# The menu widget class
  File "src/menu.py", line 92, in ?
import skin
  File "src/skin.py", line 66, in ?
exec('import ' + modname  + ' as skinimpl')
  File "", line 1, in ?
  File "skins/main1/skin_main1.py", line 95, in ?
import xml_skin
  File "skins/main1/xml_skin.py", line 65, in ?
osd = osd.get_singleton()
  File "src/osd.py", line 244, in get_singleton
_singleton = util.SynchronizedObject(OSD())
  File "src/osd.py", line 329, in __init__
self.depth)
pygame.error: No available video device
this is odd because the same computer can run mplayer, xawtv and mythtv 
with no problems. system is rh8, 2.4.21, gatos xv(ati rage II 3d/dvd+) 
and alsa9(sb5.1), 233MMX,128MB.

ive also tried to run freevo on another rh8 box, which is a AMD 
1G/512MB, sis6326 (PAL tv out), alsa9, and again it wont run, same 
error. and this box also runs mplayer/mythtv/xawtv no problems. Ive also 
tried with the standard X11 sis driver and same deal.

(its the full binary release - 1.3.2)

please someone - HELP!

roh.

_
Hot chart ringtones and polyphonics. Go to  
http://ninemsn.com.au/share/redir/adTrack.asp?mode=click&clientID=174&referral=Hotmail_taglines_plain&URL=http://ninemsn.com.au/mobilemania/default.asp 



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users




---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] (HELP!) pygame.error: No available video device

2003-07-23 Thread Roh .
i posted a message a few days ago but alas, no help yet :(

..im sure someone else has had this problem before, yes? (anyone?)

heres the error:

[EMAIL PROTECTED] freevo-1.3.2]# ./freevo
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stdin at Tue Jul 22 06:01:56 2003
Logging info in /var/log/freevo/internal-main-0.log
---
Starting src/main.py:stderr at Tue Jul 22 06:01:56 2003
Loading configure settings: /opt/freevo-1.3.2/freevo.conf
Reading config file /opt/freevo-1.3.2/freevo.conf
Cfg file data: "chanlist = australia"
Cfg file data: "display = xv"
Cfg file data: "geometry = 640x480"
Cfg file data: "jpegtran = ./runtime/apps/jpegtran"
Cfg file data: "mplayer = ./runtime/apps/mplayer/mplayer"
Cfg file data: "tv = pal"
Cfg file data: "tvtime = ./runtime/apps/tvtime/tvtime"
Cfg file data: "version = 2.0"
Loading cfg: ./freevo_config.py
Using MPlayer: ./runtime/apps/mplayer/mplayer
Loading cfg overrides: /opt/freevo-1.3.2/local_conf.py
ROM_DRIVES: Auto-detected and added "('/mnt/cdrom', '/dev/cdrom', 'CD-1')"
WARNING: DVD protection override disabled! You will not be able to play
protected DVDs!
Traceback (most recent call last):
  File "src/main.py", line 98, in ?
import menu# The menu widget class
  File "src/menu.py", line 92, in ?
import skin
  File "src/skin.py", line 66, in ?
exec('import ' + modname  + ' as skinimpl')
  File "", line 1, in ?
  File "skins/main1/skin_main1.py", line 95, in ?
import xml_skin
  File "skins/main1/xml_skin.py", line 65, in ?
osd = osd.get_singleton()
  File "src/osd.py", line 244, in get_singleton
_singleton = util.SynchronizedObject(OSD())
  File "src/osd.py", line 329, in __init__
self.depth)
pygame.error: No available video device
this is odd because the same computer can run mplayer, xawtv and mythtv with 
no problems. system is rh8, 2.4.21, gatos xv(ati rage II 3d/dvd+) and 
alsa9(sb5.1), 233MMX,128MB.

ive also tried to run freevo on another rh8 box, which is a AMD 1G/512MB, 
sis6326 (PAL tv out), alsa9, and again it wont run, same error. and this box 
also runs mplayer/mythtv/xawtv no problems. Ive also tried with the standard 
X11 sis driver and same deal.

(its the full binary release - 1.3.2)

please someone - HELP!

roh.

_
Hot chart ringtones and polyphonics. Go to  
http://ninemsn.com.au/share/redir/adTrack.asp?mode=click&clientID=174&referral=Hotmail_taglines_plain&URL=http://ninemsn.com.au/mobilemania/default.asp



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] help with TV out on Radeon all in wonder 9000 on mandrake 9.1

2003-06-07 Thread Ranger
O.K. I have everything working for my freevo box.  It all runs perfectly
with my monitor, boots directory in to freevo etc.  I am using the
insturction for booting in to x with redhat 8.0 in wiki.  The problems start
happening though when I move my box over to the tv.  Every thing goes fine
until I get up to the point of starting X, then all hell breaks loose.  I
get a bunch of text on the screen and it says that it can't use any of the
"screens."  I've gone over some of the previous mailing lists tv out and
figured out that I have to edit the XF86Config-4 file some how but I am lost
after that.  I know I have to put the option in the config file some where
to use "tv" but my XF86Config-4 file is a lot more complex then the examples
I've seen else where.  Can any body point me in the right direction here?

Card Radeon all in wonder 9000
Mandrake Linux 9.1

tia




---
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Help explain 16:9 and 4:3 output on PAL w/ G400

2003-03-17 Thread Lars Michael Jogback

Hello,

I've got Freevo up and running on a box with a Matrox G400DH
and a Widescreen TV (Philips 100Hz) (via S-Video) running at
768x576 PAL-mode.

I'm trying to get on grip on the different aspect ratios.

When starting Freevo, the TV (in Auto-aspect-mode) enters mode
Superzoom (which is used to stretch a 4:3-image to fullscreen).
In this mode the top of the picture (the text "Freevo") gets cut.
If I manually change to "Widescreen" mode, I can see everyting.

If I try to play a movie in resolution 576x304 the video looks
best at the aspect-mode "Movie-expand 16:9" but the Auto wan't
to put it in "Superzoom".

The TV has the aspect-modes:
Superzoom   Stretch 4:3 to full size
4:3 4:3 (With black bars on left and right)
Widescreen  Full size (16:9 I guess)
Movie expand 14:9   Some kind of zoom-mode
Movie expand 16:9   Some other zoom-mode
16:9 Subtitles  Almost like the previous, but doesn't zoom
as much.

My questions:

What is the "correct" resolution to use on a PAL Widescreen TV?

What is the "correct" aspect-mode to use on a 1,85:1 movie?

What is the "correct" aspect-mode to use on 2,35:1 movie?


If anyone can point in a direction to understand this, I'd be very glad.

Thanks,
/LM




---
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


<    1   2