Re: [Freevo-users] a little directfb success report (g400)

2003-06-07 Thread Aubin Paul
On Sat, Jun 07, 2003 at 08:23:27PM +0200, Benjamin Zeiss wrote:
> it seems to depend. i would say that this half day was fully worth it for 
> me. the picture quality is so much better now and these annoying lines are 
> gone. but if mga_vid works well, there really is no reason to go through 
> this hassle. thats more or less the little something i have also added to 
> the wiki. but i wouldn't really generalize that it is never worth the 
> headache.

I meant for me personally :) I've always had pretty good results...
the only hack I've made is to have the 'matrox' binary change the
brightness/contrast levels before playing a move and restoring them
afterwards.

Aubin


---
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] Freevo downloads on SF

2003-06-07 Thread Benjamin P. Keating
I noticed that all the RPMs are a tad confusing. Perhaps we can put a short
discription under each, explaining whats in it and why you need it.

whats "Freevo-boot..." rpm for?

Thats it for now :)


---
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] Problem with Freevo Config (should be easy for experienced users)

2003-06-07 Thread borealis3



I was perusing the freevo site and I was delighted 
to read that I could simply type:
 
cvs update
 
in the freevo directory and upgrade painlessly (so 
it would seem). At any rate, I typed that command, and when I ran freevo again, 
the only thing that shows is:
 
TV Shows
 
(or something like that, I'm not in front of it 
right now)
 
How can I get all the other stuff back? I looked 
through the local-conf.py file, and didn't see anything obvious.
 
I didn't really screw it up did I??
 
please advise...
 
Gary


Re: [Freevo-users] CD1 + CD2 = CD ?

2003-06-07 Thread Shawn Powers
THANK YOU!!!

the .fxd file worked PERFECTLY  Thank you very much...

(I wish I wouldn't have erased all my original 2 part movies that I have
reencoded to combine..)

-Shawn


-- 
Shawn Powers
Technology Director
Inland Lakes Schools
231-238-6868 x174
http://techcorner.inland.k12.mi.us


---
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] Re: IMPORTANT: new disc checker, please all help testing

2003-06-07 Thread Dirk Meyer
Dirk Meyer wrote:
> Please also report how long it takes to get the results if it is
> longer than 5 seconds after the drive has read the disc. If it takes
> longer, please look into /var/log/messages if there are reading
> problems reported from the kernel. 

I hoped that was a problem with my VCD (I have only one, and that is
full of images, no video). The problem was that I tried to read 6 MB
from the device, but you can't read that much from a VCD. Please try
the new version in this mail please. There should be no messages in
/var/log/messages about I/O errors anymore and every disc should be
detected in less than 5 secs.


Dischi

#!/usr/bin/env python

import re
import sys
import os

from fcntl import ioctl


# taken from cdrom.py so we don't need to import cdrom.py
CDROM_DRIVE_STATUS=0x5326
CDSL_CURRENT=( (int ) ( ~ 0 >> 1 ) )
CDS_DISC_OK=4
CDROM_DISC_STATUS=0x5327
CDS_AUDIO=100
CDS_MIXED=105
CDROM_SELECT_SPEED=0x5322

device = sys.argv[1]

try:
fd = os.open(device, os.O_RDONLY | os.O_NONBLOCK)
s = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT)
except:
# maybe we need to close the fd if ioctl fails, maybe
# open fails and there is no fd
try:
os.close(fd)
except:
pass
print 'no disc or broken disc in drive'
sys.exit(0)


s = ioctl(fd, CDROM_DISC_STATUS)
if s == CDS_AUDIO or s == CDS_MIXED:
print 'This is an AUDIO CD'
sys.exit(0)



os.close(fd)




f = open(device,'rb')

f.seek(0x832d)
id = f.read(16)
f.seek(32808, 0)
label = f.read(32)
m = re.match("^(.*[^ ]) *$", label)
if m:
label = m.group(1)
else:
label = ''

# print id
# print label

buffer = f.read(5)

if buffer.find('SVCD') > 0 and buffer.find('TRACKS.SVD') > 0 and \
   buffer.find('ENTRIES.SVD') > 0:
print 'This is a SVCD'

elif buffer.find('INFO.VCD') > 0 and buffer.find('ENTRIES.VCD') > 0:
print 'This is a VCD'

elif buffer.find('UDF') > 0:
# this may be a DVD, check deeper
buffer += f.read(55)
if buffer.find('VIDEO_TS') > 0 and buffer.find('VIDEO_TS.IFO') > 0 and \
   buffer.find('OSTA UDF Compliant') > 0:
print 'This is a DVD'

else:
print 'Sorry no DVD/VCD/SVCD/AUDIOCD here, must be a normal disc'

else:
print 'Sorry no DVD/VCD/SVCD/AUDIOCD here, must be a normal disc'

f.close()

-- 
Customer: I'm running Windows '98 
Tech: Yes. 
Customer: My computer isn't working now. 
Tech: Yes, you said that.


Re: [Freevo-users] remote command

2003-06-07 Thread skeeterskip
Marius,

That cd is what I needed. Now freevo starts when i hit
button on remote. This might be handy too if i have
lockup playing movie or music.

Startup script will be needed for lircd and irexec so
that these commands don't have to be entered manually
after bootup. Mandrake 9.1 runs kde in runlevel 5 i
think. Anyone have script for this?

skeeterskip


--- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> > /usr/local/freevo; ./freevo is what i should have
> in
> > config = area right?
> /usr/local/freevo/freevo
> or
> cd /usr/local/freevo; ./freevo
> 
> >
> > --- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> > > Hi,
> > >
> > > you have to use the full path to the executable,
> > > e.g.
> > > 'config = /path/to/radio'
> > > To find out the full path type
> > > 'whereis radio'
> > >
> > > Marius
> > >
> > > On Saturday 07 June 2003 21:53, skeeterskip
> wrote:
> > > > y, i looked at that. here is what i have so
> far.
> > >
> > > Now
> > >
> > > > if i hit yellow button radio pragram comes up.
> > >
> > > Radio
> > >
> > > > progam is located in /usr/bin, so normally i
> can
> > >
> > > tyope
> > >
> > > > radio anytime for program to come up. I would
> like
> > >
> > > to
> > >
> > > > do this with freevo but don't know how. Also i
> > >
> > > tried
> > >
> > > > putting in button to tune through radio
> channels
> > >
> > > which
> > >
> > > > is up/down on keyboard. --could't get this
> working
> > > > either.
> > > >
> > > > Maybe someone else could work on this too.
> > > >
> > > > skeeter
> > > >
> > > > p.s. sorry for lossy typing but other hand is
> > >
> > > broke
> > >
> > > > right now :(
> > > >
> > > >
> > > >
> > > >
> > > > begin
> > > >  button = Yellow
> > > > prog   = irexec
> > > > config = radio
> > > > end
> > > >  begin
> > > >  button = ChUp
> > > > prog   = radio
> > > > config = UP
> > > > end
> > > >
> > > >  begin
> > > >  button = Blue
> > > > prog   = irexec
> > > > config = freevo
> > > > end
> > > >
> > > > --- Marius Schäfer <[EMAIL PROTECTED]>
> wrote:
> > > > > Hi,
> > > > >
> > > > > > I want to see if there is way to start
> freevo
> > >
> > > with
> > >
> > > > > > remote button after freevo is closed. My
> guess
> > >
> > > is,
> > >
> > > > > > this can be done by puttin .lircrc file in
> > >
> > > home
> > >
> > > > > > directory with command in it or link to
> > >
> > > command.
> > >
> > > > > Has
> > > > >
> > > > > > anyone tried this?
> > > > >
> > > > > This can be done with irexec, which is part
> of
> > >
> > > lirc.
> > >
> > > > > http://www.lirc.org/html/irexec.html
> > > > >
> > > > > Marius
> >
> >
>
---
> >
> > > > > 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
> >
> > > > __
> > > > Do you Yahoo!?
> > > > Yahoo! Calendar - Free online calendar with
> sync
> > >
> > > to Outlook(TM).
> > >
> > > > http://calendar.yahoo.com
> >
> >
>
---
> >
> > > > 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
> >
> >
> >
> >
> >
>
---
> >
> > > 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
> >
> >
> > __
> > Do you Yahoo!?
> > Yahoo! Calendar - Free online calendar with sync
> to 
=== message truncated ===


__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


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

Re: [Freevo-users] CD1 + CD2 = CD ?

2003-06-07 Thread joekewl
If you were to setup an fxd descriptor file, you could do it. All of my
movies have fxd files mad for them.

example:


  
Goonies.jpg

  Goonies.cd1.avi
  Goonies.cd2.avi

  


Just call it goonies.fxd and place it in your movie directory, you can even
add movie posters this way!

--Robert


- Original Message -
From: "Shawn Powers" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 07, 2003 2:13 PM
Subject: [Freevo-users] CD1 + CD2 = CD ?


> Hello all,
>
> Many features I would love to see already exist in freevo and I just
didnt' know it, so perhaps this is the same:
>
> Is there a naming convention that will force freevo to show 2 files as one
file and play them back to back?  Here's an example:
>
> Goonies CD1.avi
> Goonies CD2.avi
>
> If freevo would show:
>
> Goonies
>
> and play them as a playlist, that would save me a lot of reencoding!
>
> BTW, our school is out on Monday so if the guy that stepped up and did the
documentation wants some help, maybe I'll have time to help now.  My
contract doesn't go into the summer, so I should have some time. :)
>
> -Shawn
>
> PS.  One more odd thing...  Did keybindings change?  It seems that all the
keys that used to work for turning volume up/down, etc quit working.  The
only keys that do anything now are right/left, enter, and esc.  Did I change
a setting somewhere?
>
>
> ---
> 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



---
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] CD1 + CD2 = CD ?

2003-06-07 Thread Shawn Powers
Hello all,

Many features I would love to see already exist in freevo and I just didnt' know it, 
so perhaps this is the same:

Is there a naming convention that will force freevo to show 2 files as one file and 
play them back to back?  Here's an example:

Goonies CD1.avi
Goonies CD2.avi

If freevo would show:

Goonies

and play them as a playlist, that would save me a lot of reencoding!

BTW, our school is out on Monday so if the guy that stepped up and did the 
documentation wants some help, maybe I'll have time to help now.  My contract doesn't 
go into the summer, so I should have some time. :)

-Shawn

PS.  One more odd thing...  Did keybindings change?  It seems that all the keys that 
used to work for turning volume up/down, etc quit working.  The only keys that do 
anything now are right/left, enter, and esc.  Did I change a setting somewhere?


---
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] Movie Covers

2003-06-07 Thread Fredrik Hampus
When browsing th music folders the cover inside a folder is displayed 
just be "marking" the folder
but this does not work then selecting a movie folder. When entering the 
movie folder and a
cover exists within that folder the cover is displayed but not when 
browsing folders...
can i make this to work for movie folders as it works for music folders???

/Freeman



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


Re: [Freevo-users] remote command

2003-06-07 Thread Marius Schäfer
> /usr/local/freevo; ./freevo is what i should have in
> config = area right?
/usr/local/freevo/freevo
or
cd /usr/local/freevo; ./freevo

>
> --- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > you have to use the full path to the executable,
> > e.g.
> > 'config = /path/to/radio'
> > To find out the full path type
> > 'whereis radio'
> >
> > Marius
> >
> > On Saturday 07 June 2003 21:53, skeeterskip wrote:
> > > y, i looked at that. here is what i have so far.
> >
> > Now
> >
> > > if i hit yellow button radio pragram comes up.
> >
> > Radio
> >
> > > progam is located in /usr/bin, so normally i can
> >
> > tyope
> >
> > > radio anytime for program to come up. I would like
> >
> > to
> >
> > > do this with freevo but don't know how. Also i
> >
> > tried
> >
> > > putting in button to tune through radio channels
> >
> > which
> >
> > > is up/down on keyboard. --could't get this working
> > > either.
> > >
> > > Maybe someone else could work on this too.
> > >
> > > skeeter
> > >
> > > p.s. sorry for lossy typing but other hand is
> >
> > broke
> >
> > > right now :(
> > >
> > >
> > >
> > >
> > > begin
> > >  button = Yellow
> > > prog   = irexec
> > > config = radio
> > > end
> > >  begin
> > >  button = ChUp
> > > prog   = radio
> > > config = UP
> > > end
> > >
> > >  begin
> > >  button = Blue
> > > prog   = irexec
> > > config = freevo
> > > end
> > >
> > > --- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> > > > Hi,
> > > >
> > > > > I want to see if there is way to start freevo
> >
> > with
> >
> > > > > remote button after freevo is closed. My guess
> >
> > is,
> >
> > > > > this can be done by puttin .lircrc file in
> >
> > home
> >
> > > > > directory with command in it or link to
> >
> > command.
> >
> > > > Has
> > > >
> > > > > anyone tried this?
> > > >
> > > > This can be done with irexec, which is part of
> >
> > lirc.
> >
> > > > http://www.lirc.org/html/irexec.html
> > > >
> > > > Marius
>
> ---
>
> > > > 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
>
> > > __
> > > Do you Yahoo!?
> > > Yahoo! Calendar - Free online calendar with sync
> >
> > to Outlook(TM).
> >
> > > http://calendar.yahoo.com
>
> ---
>
> > > 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
>
>
>
>
> ---
>
> > 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
>
>
> __
> Do you Yahoo!?
> Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
> http://calendar.yahoo.com
>
>
> ---
> 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



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


Re: [Freevo-users] remote command

2003-06-07 Thread skeeterskip
i think i tried that with freevo

/usr/local/freevo; ./freevo is what i should have in
config = area right?

--- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> Hi, 
> 
> you have to use the full path to the executable,
> e.g.
> 'config = /path/to/radio'
> To find out the full path type
> 'whereis radio'
> 
> Marius
> 
> 
> On Saturday 07 June 2003 21:53, skeeterskip wrote:
> > y, i looked at that. here is what i have so far.
> Now
> > if i hit yellow button radio pragram comes up.
> Radio
> > progam is located in /usr/bin, so normally i can
> tyope
> > radio anytime for program to come up. I would like
> to
> > do this with freevo but don't know how. Also i
> tried
> > putting in button to tune through radio channels
> which
> > is up/down on keyboard. --could't get this working
> > either.
> >
> > Maybe someone else could work on this too.
> >
> > skeeter
> >
> > p.s. sorry for lossy typing but other hand is
> broke
> > right now :(
> >
> >
> >
> >
> > begin
> >  button = Yellow
> > prog   = irexec
> > config = radio
> > end
> >  begin
> >  button = ChUp
> > prog   = radio
> > config = UP
> > end
> >
> >  begin
> >  button = Blue
> > prog   = irexec
> > config = freevo
> > end
> >
> > --- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> > > Hi,
> > >
> > > > I want to see if there is way to start freevo
> with
> > > > remote button after freevo is closed. My guess
> is,
> > > > this can be done by puttin .lircrc file in
> home
> > > > directory with command in it or link to
> command.
> > >
> > > Has
> > >
> > > > anyone tried this?
> > >
> > > This can be done with irexec, which is part of
> lirc.
> > > http://www.lirc.org/html/irexec.html
> > >
> > > Marius
> >
> >
>
---
> >
> > > 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
> >
> >
> > __
> > Do you Yahoo!?
> > Yahoo! Calendar - Free online calendar with sync
> to Outlook(TM).
> > http://calendar.yahoo.com
> >
> >
> >
>
---
> > 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
> 
> 
> 
>
---
> 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


__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


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


Re: [Freevo-users] remote command

2003-06-07 Thread Marius Schäfer
Hi, 

you have to use the full path to the executable, e.g.
'config = /path/to/radio'
To find out the full path type
'whereis radio'

Marius


On Saturday 07 June 2003 21:53, skeeterskip wrote:
> y, i looked at that. here is what i have so far. Now
> if i hit yellow button radio pragram comes up. Radio
> progam is located in /usr/bin, so normally i can tyope
> radio anytime for program to come up. I would like to
> do this with freevo but don't know how. Also i tried
> putting in button to tune through radio channels which
> is up/down on keyboard. --could't get this working
> either.
>
> Maybe someone else could work on this too.
>
> skeeter
>
> p.s. sorry for lossy typing but other hand is broke
> right now :(
>
>
>
>
> begin
>  button = Yellow
> prog   = irexec
> config = radio
> end
>  begin
>  button = ChUp
> prog   = radio
> config = UP
> end
>
>  begin
>  button = Blue
> prog   = irexec
> config = freevo
> end
>
> --- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > > I want to see if there is way to start freevo with
> > > remote button after freevo is closed. My guess is,
> > > this can be done by puttin .lircrc file in home
> > > directory with command in it or link to command.
> >
> > Has
> >
> > > anyone tried this?
> >
> > This can be done with irexec, which is part of lirc.
> > http://www.lirc.org/html/irexec.html
> >
> > Marius
>
> ---
>
> > 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
>
>
> __
> Do you Yahoo!?
> Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
> http://calendar.yahoo.com
>
>
> ---
> 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



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


Re: [Freevo-users] remote command

2003-06-07 Thread skeeterskip
y, i looked at that. here is what i have so far. Now
if i hit yellow button radio pragram comes up. Radio
progam is located in /usr/bin, so normally i can tyope
radio anytime for program to come up. I would like to
do this with freevo but don't know how. Also i tried
putting in button to tune through radio channels which
is up/down on keyboard. --could't get this working
either.

Maybe someone else could work on this too.

skeeter

p.s. sorry for lossy typing but other hand is broke
right now :(




begin
 button = Yellow
prog   = irexec
config = radio
end
 begin
 button = ChUp
prog   = radio
config = UP
end

 begin
 button = Blue
prog   = irexec
config = freevo
end


--- Marius Schäfer <[EMAIL PROTECTED]> wrote:
> Hi,
> > I want to see if there is way to start freevo with
> > remote button after freevo is closed. My guess is,
> > this can be done by puttin .lircrc file in home
> > directory with command in it or link to command.
> Has
> > anyone tried this?
> 
> This can be done with irexec, which is part of lirc.
> http://www.lirc.org/html/irexec.html
> 
> Marius
> 
> 
> 
>
---
> 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


__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


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


Re: [Freevo-users] remote command

2003-06-07 Thread Marius Schäfer
Hi,
> I want to see if there is way to start freevo with
> remote button after freevo is closed. My guess is,
> this can be done by puttin .lircrc file in home
> directory with command in it or link to command. Has
> anyone tried this?

This can be done with irexec, which is part of lirc.
http://www.lirc.org/html/irexec.html

Marius



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


Re: [Freevo-users] OT: case for mini-itx

2003-06-07 Thread joekewl
I used my old NES for my next HTPC :)
http://not.hellalame.com/nes/
It will only be for playing movies, definatly MAME, and maybe music. It's in
pieces right now for fitting a PCI video card with TV-Out into it. but once
I have freevo up on it, I will post again with some screenshots!

--Robert


- Original Message -
From: "Bo Rosén" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 05, 2003 12:32 PM
Subject: [Freevo-users] OT: case for mini-itx


> Hi,
> I know this is somewhat OT, but I plan to build a htpc in a few months
> based on the eden m1 board.
> Any good suggestions for a case that won't be embarrasing beside my
> stereo? From someone who ships to Sweden?
> The closest thing I've found would be something from Morex, except I
> think they look terrible ;-)
> --
> Bo Rosén <[EMAIL PROTECTED]>



---
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] IMPORTANT: new disc checker, please all help testing

2003-06-07 Thread Dirk Meyer
Hi,

I want to find out if a disc is a DVD/VCD/SVCD or not _without_
mounting the disc. I wrote a small program to test it. It's attached
to the mail. Please test it with some DVD/VCD/SVCD of you. Also try
Audio CDs, no CDs and normal CDs, too.

Just start the script with the device as parameter, e.g.
./check_disc /dev/dvd

If I have 100% the correct results I will integrate this into mmpython
which will be our media detector in the future. Please don't only
report failures, also positive results. Send reports to me
([EMAIL PROTECTED]) to avoid a flood of mails on this list.

Please also report how long it takes to get the results if it is
longer than 5 seconds after the drive has read the disc. If it takes
longer, please look into /var/log/messages if there are reading
problems reported from the kernel. 


Dischi

#!/usr/bin/env python

import re
import sys
import os

from fcntl import ioctl


# taken from cdrom.py so we don't need to import cdrom.py
CDROM_DRIVE_STATUS=0x5326
CDSL_CURRENT=( (int ) ( ~ 0 >> 1 ) )
CDS_DISC_OK=4
CDROM_DISC_STATUS=0x5327
CDS_AUDIO=100
CDS_MIXED=105
CDROM_SELECT_SPEED=0x5322

device = sys.argv[1]

try:
fd = os.open(device, os.O_RDONLY | os.O_NONBLOCK)
s = ioctl(fd, CDROM_DRIVE_STATUS, CDSL_CURRENT)
except:
# maybe we need to close the fd if ioctl fails, maybe
# open fails and there is no fd
try:
os.close(fd)
except:
pass
print 'no disc or broken disc in drive'
sys.exit(0)


s = ioctl(fd, CDROM_DISC_STATUS)
if s == CDS_AUDIO or s == CDS_MIXED:
print 'This is an AUDIO CD'
sys.exit(0)



os.close(fd)




f = open(device,'rb')

f.seek(0x832d)
id = f.read(16)
f.seek(32808, 0)
label = f.read(32)
m = re.match("^(.*[^ ]) *$", label)
if m:
label = m.group(1)
else:
label = ''

# print id
# print label

buffer = f.read(60)

if buffer.find('VIDEO_TS') > 0 and buffer.find('VIDEO_TS.IFO') > 0 and \
   buffer.find('OSTA UDF Compliant') > 0:
print 'This is a DVD'

elif buffer.find('SVCD') > 0 and buffer.find('TRACKS.SVD') > 0 and \
 buffer.find('ENTRIES.SVD') > 0:
print 'This is a SVCD'

elif buffer.find('INFO.VCD') > 0 and buffer.find('ENTRIES.VCD') > 0:
print 'This is a VCD'

else:
print 'Sorry no DVD/VCD/SVCD/AUDIOCD here, must be a normal disc'

f.close()

-- 
Never put off until tomorrow what you can do the day after.



Re: [Freevo-users] a little directfb success report (g400)

2003-06-07 Thread Benjamin Zeiss


--On Saturday, June 07, 2003 12:52:06 -0400 Aubin Paul <[EMAIL PROTECTED]> 
wrote:

I've been writing a HOWTO for this since it's a common request. I'm
about half way through, though I should confess that I don't bother
with dfbmga because it's a neglible benefit for a lot of headache on
my end.
it seems to depend. i would say that this half day was fully worth it for 
me. the picture quality is so much better now and these annoying lines are 
gone. but if mga_vid works well, there really is no reason to go through 
this hassle. thats more or less the little something i have also added to 
the wiki. but i wouldn't really generalize that it is never worth the 
headache.

--
Benjamin Zeiss
---
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] remote command

2003-06-07 Thread skeeterskip
I want to see if there is way to start freevo with
remote button after freevo is closed. My guess is,
this can be done by puttin .lircrc file in home
directory with command in it or link to command. Has
anyone tried this?

skeetere

__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


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


Re: [Freevo-users] Frame buffer, TV-out and NVidia

2003-06-07 Thread Jortan H
 --- Wan Tat Chee <[EMAIL PROTECTED]> skrev: > On Thu, 5
Jun 2003, [iso-8859-1] Jortan H wrote:
> 
> > Hi,
> > 
> > I really like this project, you've done a great
> job!
> > 
> > I'm wondering if it is possible to use an NVidia
> > Geforce graphics card in frame buffer mode
> (without X)
> > with TV-out. As far as I have read I understand
> that I
> > have to use X to get TV-out, is that correct?
> > 
> 
> No, I have a GF4 MX440 with TV-out, and I don't have
> to do anything to get
> it working in framebuffer mode. Just make sure you
> have the composite
> cable plugged in when you start up. Not sure what
> happens if you have
> both a TV and a monitor plugged in though.
> 
Thanks, I didn't know this. I tried and the linux
startup text showed up on the TV. Until entering frame
buffer mode when the screen blanked out. I understand
that I have to use fbset to set frame buffer geometry
and timings. Does anyone know how to set this for a
PAL TV? I've searched the web for info on this but
none of what I found worked... 
/Bjorn

> > If it is possible, how do I configure TV-out in
> frame
> > buffer mode?
> > 
> > Thanks in advance,
> > Bjorn
> > 
> > 
> >
>
_
> > Gå före i kön och få din sajt värderad på nolltid
> med Yahoo! Express
> > Se mer på:
>
http://se.docs.yahoo.com/info/express/help/index.html
> > 
> > 
> 
> 
> 
>
---
> 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 

_
Gå före i kön och få din sajt värderad på nolltid med Yahoo! Express
Se mer på: http://se.docs.yahoo.com/info/express/help/index.html


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


Re: [Freevo-users] a little directfb success report (g400)

2003-06-07 Thread Aubin Paul
On Sat, Jun 07, 2003 at 01:53:27PM +0200, Benjamin Zeiss wrote:
> i went through the trouble and made the dfbmga mode work in freevo and 
> mplayer yesterday on my g400 and thought that it might be worth to share my 
> results with you.
> first of all, it really involves a *lot* of work as it involves compiling a 
> patched kernel and recompiling mplayer with a patch. it is definately 
> nothing for linux newbies. categorizing myself as relatively experienced on 
> unix, i needed almost half a day to make it work properly (although i spend 
> most of the time debugging a really really stupid mistake).

I've been writing a HOWTO for this since it's a common request. I'm
about half way through, though I should confess that I don't bother
with dfbmga because it's a neglible benefit for a lot of headache on
my end.

Aubin


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


Re: [Freevo-users] compiling sdl for freevo

2003-06-07 Thread Aubin Paul
I don't use it myself, but I think the main two are:

o SDL-1.2.4-patch1 - Allows SDL to work without a keyboard if the
SDL_NOKEYBOARD environment variable is set

o SDL_ttf2-patch2 - Fixes crashes for truetype font problems. This is
superceded by recent snapshots of pygame which fix the problem there.

So you probably don't need them unless you don't have a keyboard. All
I did was grab one of those old USB->PS2 keyboard attachments and plug
it in the back of my PC (with no keyboard attached) and SDL thought it
had a keyboard so no patching was necessary.

Aubin



On Sat, Jun 07, 2003 at 03:57:10PM +0200, Benjamin Zeiss wrote:
> hi again,
> 
> i wonder which patches have to go into the freevo runtime sdl lib. when i 
> made it run, i fell back to the sdl runtime lib, but i'd like to get 
> independed from the runtime again so i could try again cvs without messing 
> with the runtime stuff. also: i tried to compile sdl with the directfb 
> patch yesterday (the one  in the cvs). but sdl wouldn't detect my directfb 
> installation so i had to patch the configure.in to make it compile. it 
> still didn't work afterwards...?
> 
> thanks...
> 
> --
> Benjamin Zeiss
> 
> 
> ---
> 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


---
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] Music crash

2003-06-07 Thread skeeterskip
Hi everyone, great progress on Freevo! I finally got
remote working today. I had been mistakenly naming
lircrc file as .lircrc instead of without period.

I noticed that ut looks like files can be deleted now
in freevo. I haven't tried it yet and want to know if
files should have special permissions in order to have
them deleted.

Also, I noticed that I have music lockups when playing
music quite often. I then have to either reboot or
remotely kill processes. Here ere some things that
show up in Webmin when it locked up.


10726 root 0.0 % ./runtime/dll/freevo_loader
./runtime/apps/freevo_python src/main.py 
10727 root 0.0 % ./runtime/dll/freevo_loader
./runtime/apps/freevo_python src/main.py 
10732 root 0.0 % ./runtime/dll/freevo_loader
./runtime/apps/freevo_python src/main.py 
10733 root 0.0 % ./runtime/dll/freevo_loader
./runtime/apps/freevo_python src/main.py 
10738 root 0.0 % ./runtime/dll/freevo_loader
./runtime/apps/freevo_python src/main.py 
10739 root 0.0 % ./runtime/dll/freevo_loader
./runtime/apps/freevo_python src/main.py 


__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


---
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] VGA->Component cables and Sync-On-Green

2003-06-07 Thread Brian Lalor
Does anyone have any experience playing with these[1] cables for use 
with TV-out from a VGA port on the graphics card?  Looks like the video 
card needs to support sync-on-green to work.  Seems like a 
cost-effective solution if you can get the timings right...

[1] http://www.ramelectronics.net/html/hdtv-cables.html#hd15rgb
--
   __   
  / /  / __/ Brian Lalor
 / _ \/__ \  [EMAIL PROTECTED]
/_.__//  http://bravo5.org/
---
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


Re: [Freevo-users] Holy Crap! (Freevo Progress) + Remote?]

2003-06-07 Thread Aubin Paul
On Sat, Jun 07, 2003 at 05:30:47AM -0500, Benjamin P. Keating wrote:
> I didn't think you guys were going to use my header for the website then I
> refered a friend to the freevo project and I took a look as well (while i was
> explaining it to him) and I freaked out. :) Thanks for using my header + gui
> concepts. I feel all hyper and happy now :)

Well, thank YOU for making it, I think it looks a lot nicer now.

> whats a nice, minimal, light weight remote controll i can pruchase for freevo? I
> just bought a new sager laptop and it has IR and I'd like to use it :) thanks.

The ones I recommended earlier are at:
http://www.hifi-remote.com/ofa/

Aubin


---
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] compiling sdl for freevo

2003-06-07 Thread Benjamin Zeiss
hi again,

i wonder which patches have to go into the freevo runtime sdl lib. when i 
made it run, i fell back to the sdl runtime lib, but i'd like to get 
independed from the runtime again so i could try again cvs without messing 
with the runtime stuff. also: i tried to compile sdl with the directfb 
patch yesterday (the one  in the cvs). but sdl wouldn't detect my directfb 
installation so i had to patch the configure.in to make it compile. it 
still didn't work afterwards...?

thanks...

--
Benjamin Zeiss
---
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] a little directfb success report (g400)

2003-06-07 Thread Benjamin Zeiss
hi,

i went through the trouble and made the dfbmga mode work in freevo and 
mplayer yesterday on my g400 and thought that it might be worth to share my 
results with you.
first of all, it really involves a *lot* of work as it involves compiling a 
patched kernel and recompiling mplayer with a patch. it is definately 
nothing for linux newbies. categorizing myself as relatively experienced on 
unix, i needed almost half a day to make it work properly (although i spend 
most of the time debugging a really really stupid mistake).

why did i even bother? ever since i used the g400 tv-out on linux i had 
diagonal (rgb) lines going through the picture which basically brightend up 
the picture where these lines were (using mga_vid). i almost got used to 
it, but it's definately is annoying. the good news is: using dfbmga, these 
lines are gone and i would even go on and say that the picture quality is 
more sharp than with mga_vid. others don't experience this enhancement 
though (thanks to rshortt for helping me a little).
then, using the old mga_vid method, i sometimes experienced framebuffer 
lockups when i had to quit freevo using kill (sometimes my remote control 
just doesn't react anymore. i haven't found the source of this problem 
yet). i had to restart the computer when i had this. these lockups are gone 
too.

however, one thing i couldn't correct yet is that my self-compiled mplayer 
would somewhow fall into an endless loop when trying to play ogm files. i 
guess i'll just have to compile it one more time and check everything more 
carefully or so...

so if you are having trouble with mga_vid, i'd definately recommend giving 
directfb a shot. you just need to be aware that you may need time to make 
it work.

--
Benjamin Zeiss
---
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] Re: imdb and info

2003-06-07 Thread Dirk Meyer
Dirk Meyer wrote:
> "Joakim Berglund" wrote:
>> Hi there!
>>
>>
>> Iv been keeping an eye out for mythtv too see what they have been doing 
>> and I come upon their new mythvideo module and I must say there is a 
>> feature there that I really really would what in Freevo. (If it doesn't 
>> exists already)
>>
>>
>> http://www.untzuntz.com/mythtv/video/
>>
>>
>> Take a look on the imdb handling they are doing there.
>>
>>
>> In sort it's an interface to the imdb.py allowing you to handle it from 
>> the interface instead of having to do it manualy. I really really like 
>> that feature.
>
> There was a imdb plugin some time ago, but it never got updated. I
> add it to my TODO list.

OK, it's in CVS. Activate the plugin with
plugin.activate('video.imdb'). It should work for all video files, not
for DVD and for files on rom drives. You can also set the imdb search
on an extra button (hello new event system), see the notes in
src/video/plugins/imdb.py how.

Dischi

-- 
System going down at 1:45 this afternoon for disk crashing.


---
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] Holy Crap! (Freevo Progress) + Remote?

2003-06-07 Thread Benjamin P. Keating
I didn't think you guys were going to use my header for the website then I
refered a friend to the freevo project and I took a look as well (while i was
explaining it to him) and I freaked out. :) Thanks for using my header + gui
concepts. I feel all hyper and happy now :)

As far as Freevo's progrss goes, I go on vacation and this is what i come back
to?   I've missed SO much :) nice works guys, im seriously impressed and that
new 'web' skin totally takes on Windows XP media center (which is good!) 

Remote question:

whats a nice, minimal, light weight remote controll i can pruchase for freevo? I
just bought a new sager laptop and it has IR and I'd like to use it :) thanks.

Keep up the good work guys, This project is not only fun and useful, it's
inspiring. I'll try to give back to it as much as possible.


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


RE: [Freevo-users] OT: case for mini-itx

2003-06-07 Thread Bo Rosén
fre 2003-06-06 klockan 00.33 skrev Tommy Killander:

Hi,
Again, if this is getting too OT please let me know and I'll shut up
and go to a more appropriate place.

> Just wanted to mention a couple of mods I made to the 2699R make it work for
> me.

Thanks for this. I'd rather not have to mess with mods (not really a
technical guy) so perhaps I should look for a more powerful psu/case
combo?

My current list of things to buy:

MoboVia Eden M1
CaseCubid 2699R - mini-itx Case
Ram Standard 512Mb DDR PC2100/DDR266 184pin 266MHz 
TV-card WinTV-PVR 250   
CD/DVD  Slimline?
HDD Seagate Baracuda  120Gb 7200rpm 8Mb UDMA100 IDE
Kbd/mouse   Some kbd/mouse combo wireless thing

Any comment on this? I'm specifically unsure about the ram, I gather
there's somehing called low profile which are lower than other mem
modules. Do I need that kind if I also have a tv-card on the reiser
card?
Suggestions for low noise slimline dvd/cd combo?

>  - The COM2 port is excellent for connecting your LIRC receiver hardware.

I'm not really sure what I need here, will the remote that comes with
the tv-card work with 'everything', or do I need to get a separate
remote for freevo? Will any wireless kbd mouse combo work in linux?

I've built computers before, but it's been quite a few years now and I
haven't really kept up :-)

>  - The USB connectors on the front is perfect for connecting your USB
> Gamepads (for XMAME or SNES emulators).

Hm, yes. I need to figure out how to get that working too :-)

I know support for both the mobo and tuner card are not perfect yet in
Linux, but I'm confident things will improve. But in the mean time, I
may just double boot into you know what and play with Linux until I got
it working. I'm not buying anything until August, so things may change
till then...

I've been thinking about Gentoo. I've never used it before (though not
new to Linux) but thought that for a machine like this the optimizations
possible would be useful.

Thanks,
Bo
-- 
Bo Rosén <[EMAIL PROTECTED]>



---
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] Lirc problem

2003-06-07 Thread Marius Schäfer
Hi, 
don't know if it's related to freevo, but when watching a movie after about 
1.5h my remote control stops working. I'm using a home-made serial receiver. 
Has anyone had the same problem? Where to start debugging it?
Thx
Marius



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