[Freevo-users] Remove "Unknown" menu entry

2007-06-17 Thread Cornelius Koelbel
Hello List,

once I installed some plugins - but I can not remember what...

Now I got within my menu one menu entry "Unknown" between TV and films.
There is not anything within this menu entry. How can I remove this entry?

Kind regards
Cornelius


smime.p7s
Description: S/MIME Cryptographic Signature
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] freevo 1.7.0, directfb and mplayer

2007-03-05 Thread Cornelius Koelbel

Hello list,

I was just upgrading from freevo 1.6.0 to 1.7.0.
Since I use mplayer with directfb I got a rather long line

MPLAYER_VO_DEV_OPTS  =  
':crtc2:spic:noinput:bes:tvnorm=pal:fieldparity=top'

But I realized, that it would not play videos any longer.

I realized, there was a change in mplayer.py:

--snip--
 # Mplayer command and standard arguments
-command += [ '-v', '-vo', config.MPLAYER_VO_DEV +
- config.MPLAYER_VO_DEV_OPTS ]
+command += [ '-v', '-vo', VODEV]
+command += VODEVOPTS.split(' ')
--snip--

This new building of the command string caused a whitespace in my 
mplayer-command:

mplayer  -vo dfbmga :crtc2

Thus the command would fail, since the command has to be
mplayer  -vo dfbmga:crtc2

After changing this line back, it worked fine for me.

Kind regards
Cornelius



smime.p7s
Description: S/MIME Cryptographic Signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] mplayer and svd's

2007-01-21 Thread Cornelius Koelbel
Hello,

found some of the old self-burned super video CDs and put them into my 
freevo box, which is running with directfb (matrox) and freevo 1.6.0.

But when watching the films i get the problem, that the video is not 
fullscreen - since it is the PAL resoultion of 480x576 points. Any idea 
how to zoom these to fullscreen?

Thanks in advance
Cornelius

--
This Mail was scanned using Mailscanner.info


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo box over Compact Flash.

2006-11-18 Thread Cornelius Koelbel
Hi,

to use pxe boot I installed and configured dhcp and tftp.

A dhcp.conf on my FC4 (server) would look like this

--snip--
#
# DHCP Server Configuration file.
#   see /usr/share/doc/dhcp*/dhcpd.conf.sample
#
deny unknown-clients;
not authoritative;

option domain-name  "az.local";
option domain-name-servers  172.16.200.10;
option subnet-mask  255.255.255.0;
ddns-update-style ad-hoc;

allow bootp;
allow booting;

#option ip-forwarding   false;
#option mask-supplier   false;

subnet 172.16.200.1 netmask 255.255.255.255 {
}

group {
next-server 172.16.200.1;   # Name of the tftp server
filename "pxelinux.0";  # Name of the bootloader program
option routers 172.16.200.10;

subnet 172.16.200.0 netmask 255.255.255.0 {
#range 172.16.200.20 172.16.200.30;
option time-servers schnuck;
option ntp-servers schnuck;
option nis-domain "az.local";
option nis-servers schnuck;
option tftp-server-name schnuck;
}

host wohnzimmer {
# Hier die Adresse des Wohnzimmer-PCs
hardware ethernet 00:30:1B:40:1E:A6;
fixed-address 172.16.200.20;
option root-path "/data/sata/wohnzimmer/ROOT";
option host-name "wohnzimmer" ;
}
}
--snip--

The "next-server" is the tftp server, that provides the pxelinux.0 and
also the file system for the freevo box.
My freevo box is the host "wohnzimmer" i.e. living room. The complete
distribution (FC5) is installed on the server in the directory
/data/sata/wohnzimmer/ROOT.


tftp is started via xinet:
--snip--
# default: off
# description: The tftp server serves files using the trivial file
transfer \
#   protocol.  The tftp protocol is often used to boot diskless \
#   workstations, download configuration files to network-aware
printers, \
#   and to start the installation process for some operating systems.
service tftp
{
socket_type = dgram
protocol= udp
wait= yes
user= root
server  = /usr/sbin/in.tftpd
server_args = -s /data/sata/wohnzimmer/tftpboot
disable = no
per_source  = 11
cps = 100 2
flags   = IPv4
}
--snip--

So in /data/sata/wohnzimmer/tftpboot there is the pxelinux.0
(bootloader), kernel image etc... and also
pxelinux.cfg/default, which is for me:

--snip--
default linux
label linux
#   kernel vmlinuz-2.6.14.3-new
#   kernel vmlinuz-2.6.13-1.1526_FC4
#   kernel vmlinuz-2.6.14-1.1656_FC4
kernel vmlinuz-2.6.15.1
append root=/dev/nfs initrd=initrd-mein.img rw
nfsroot=172.16.200.1:/data/sata/wohnzimmer/ROOT,v4
ip=172.16.200.20:172.16.200.1:172.16.200.10:255.255.255.0:wohnzimmer:eth0:
video=dfdfbmga:vesa:0x183 vga=extended
--snip--
As you can see, I got also the TV connected via framebuffer directly to
sub15 of my matrox card :-)

Unfortunately I never managed to write any detailed howto...

Kind regards
Cornelius



Ignacio - schrieb:
> We try to use EPIA instead of a big atx case. Not for better performance.
> How "net boot" works? Maybe it will be better than CF ide adapter.
> Any requeriments? Im using a standard gigabit card r8169 and Gentoo.
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
> 
> --
> This Mail was scanned using Mailscanner.info
> 
> 


smime.p7s
Description: S/MIME Cryptographic Signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo box over Compact Flash.

2006-11-16 Thread Cornelius Koelbel
Hi,
thats great.
I also removed the HD from my freevo box.
I run the box completely with pxe-boot from a root-nfs.

Unfortunately there is still this anoying fan in the power supply. :(

Kind regards
Cornelius


Chris Thomas schrieb:
> I'm running Freevo off of a CF card and so far I like it. I don't have
> a tuner, so I just use it for video playback and photos. Having it be
> completely slient is great.
> 
> I'm mounting both the data and parts of the system via NFS. A better
> approach is to use a ram disk. You want to minimize writes the CF
> card, so either use a ram disk or write logs, temp files, freevo
> cache, etc... somewhere else.
> 
> I'm running Gentoo on a 512MB card. It's mounting portage so I can
> still add software if I need to.
> 
> One tip, to reduce the long boot time when booting from a CF card,
> boot with the kernel option ide=nodma.
> 
> -Chris
> 
> On 11/16/06, Ignacio - <[EMAIL PROTECTED]> wrote:
>> Hi to everybody! Im trying to get an IDE Compact Flash Adapter, and
>> put my hard disk as slave to record only, and put the whole system on
>> the CF. Does anybody knows how will it work?
>> In my opinion, it would work fine because it justs read from HDD on
>> the boot up, and movies and music.., are a nfs mount. I would like to
>> turn off the hdd when it does not work, lot of noise :S. Thanks.
>>
>> -
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share your
>> opinions on IT & business topics through brief surveys - and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Freevo-users mailing list
>> Freevo-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/freevo-users
>>
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
> 
> --
> This Mail was scanned using Mailscanner.info
> 
> 


smime.p7s
Description: S/MIME Cryptographic Signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] lcd plugin

2006-11-14 Thread Cornelius Koelbel
Hello List,

finally I installed my lcd screen (a simple hd44780) in my freevo box.
I was using 1.5.4 and upgraded to freevo 1.6 recently.
I loaded the lcd plugin but get just a simple
Hello,-it's-wednesday-15th-screen.

What do I have to do, to also add menus on my lcd (27x4 chars), so that
I do not need to switch on the TV?

Kind regards
Cornelius


smime.p7s
Description: S/MIME Cryptographic Signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] DMA sound for watching TV

2006-02-02 Thread Cornelius Koelbel
HEllo,

hello, I got a TV Card as follows:
00:0a.0 Multimedia video controller: Brooktree Corporation Bt878 Video
Capture (rev 11)
00:0a.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture
(rev 11)

I configured the kernel to use btaudio. Now I got a /dev/dsp1.

I can hear the sound of the tv program when doing a

sox -r 32000 -w -t ossdsp /dev/dsp1 -t ossdsp /dev/dsp &

(I do not want to use this backgroud job)

But I can absolutely not make mplayer to take the audio input from
/dev/dsp1:

something like:

mplayer -vo dfbmga:crtc2:spic:noinput:bes:tvnorm=pal -fs -autosync 100
-autoq 100 -fs -slave -nocache tv:// -tv
driver=v4l2:freq=189.250:device=/dev/video0:input=0:norm=PAL:width=640:height=480:outfmt=yuy2:adevice=/dev/dsp1:audiorate=32000:forceaudio:forcechan=1:volume=100:buffersize=64
-delay 2 -vo dfbmga:crtc2:spic:noinput:bes:tvnorm=pal

will result in silence:

--snip--
Opening video decoder: [raw] RAW Uncompressed Video
VDec: vo config request - 640 x 480 (preferred colorspace: Packed YUY2)
VDec: using Packed YUY2 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
VO: [dfbmga] 640x480 => 640x480 Packed YUY2  [fs]
vo_dfbmga: Video surface 640x480 YUY2
vo_dfbmga: BES using single buffering
vo_dfbmga: BES surface 640x480 YUY2
vo_dfbmga: Field parity set to: Don't care
vo_dfbmga: CRTC2 using triple buffering
vo_dfbmga: CRTC2 surface 720x576 ARGB
vo_dfbmga: Sub-picture surface 720x576 ARGB (CRTC2)
Selected video codec: [rawyuy2] vfm: raw (RAW YUY2)
==
Audio: no sound
Starting playback...
--snip--

it always tells me "no sound" :(

Any ideas?

Regards
Cornelius


smime.p7s
Description: S/MIME Cryptographic Signature


[Freevo-users] Zooming with remote control

2006-01-27 Thread Cornelius Koelbel
Hello,

using xine in the normal way you can use the keys z and Z to zoom the
video in and out.
Is there a possibility to do this within freevo with my remote control?

Regards
Cornelius


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [Freevo-users] lcd displays

2006-01-09 Thread Cornelius Koelbel
Hi,

unfortunately I do not have the answer. I am not running a lcd display
but I think this is a neat idea.
I think there are display to connect to the parallel port supported by
lcdproc?

Do you, if freevo only displays information on the lcd (as in the
"layouts" in lcd.py) or will for example the menu be displayed, so that
I can navigate through freevo using the lcd instead of the TV?

Regards
Cornelius


Alberto Hernando wrote:
> Hi.
> 
> I'm considering buying a lcd display for my freevo box, as I want to have it 
> working without the tv on in some cases. I want to use an usb display, 
> because the only serial port of the box (asus pundit-r) is busy with the ir 
> remote control. I've been navigating the hardware section of lcdproc.org, and 
> I've found out that these things aren't cheap. So I'd like to know if 
> somebody here has one of these working, how is the quality, using freevo with 
> this... Anything you can tell. I can't find gadgets like this in any local 
> store, so if I'll buy this on-line I want to make sure that I won't regret it 
> later.
> 
> Thanks
> 
>   Alberto
> 
> 
> ---
> This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
> for problems?  Stop!  Download the new AJAX search engine that makes
> searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
> http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
> 
> 
> --
> Diese Nachricht wurde auf Viren und andere gefährliche Inhalte untersucht
> und ist - aktuelle Virenscanner vorausgesetzt - sauber.
> MailScanner dankt transtec Computer für die freundliche Unterstützung.
> 
> 


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [Freevo-users] Can not watch TV

2006-01-04 Thread Cornelius Koelbel
Hi,
I got the pugins activated. I am not sure what I changed. (Change many
things) since I am setting up the box but now I get the picture.
(Maybe I got a wrong TV_DRIVER - i needed v2l2)

But still I am playing with the sound.
Got a simple Bt878 WinTV.

Looks like my mixer settings are not quite well yet.

THanks and kind regards
Cornelius


John Molohan wrote:
> Cornelius Koelbel wrote:
> 
>> Dear List,
>>
>> when I enter the menu
>> -> Watch TV -> TV Guide
>> i can press REC to start recording a program but I can not _watch_ the
>> program.
>>
>> Hitting Enter causes:
>> no event mapping for key ENTER in context tvmenu
>> send button event BUTTON arg=ENTER
>>
>> I am using freevo 1.5.4 with lirc 0.7.2 and want to use mplayer for
>> watching TV.
>> It works fine at the command line.
>>
>> Any ideas?
>>
>> Regards
>> Cornelius
>>  
>>
> Have you got one of the tv plugins enabled? You should have either
> plugin.activate(tv.mplayer) or plugin.activate(tv.tvtime), you'll have
> to check the syntax of those.
> 
> John
> 


smime.p7s
Description: S/MIME Cryptographic Signature


[Freevo-users] Can not watch TV

2006-01-03 Thread Cornelius Koelbel
Dear List,

when I enter the menu
-> Watch TV -> TV Guide
i can press REC to start recording a program but I can not _watch_ the
program.

Hitting Enter causes:
no event mapping for key ENTER in context tvmenu
send button event BUTTON arg=ENTER

I am using freevo 1.5.4 with lirc 0.7.2 and want to use mplayer for
watching TV.
It works fine at the command line.

Any ideas?

Regards
Cornelius


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [Freevo-users] Freevo won't start with dfbmga

2005-12-20 Thread Cornelius Koelbel
Hello,

my directfbrc looks like this...

debug
no-banner
matrox-crtc2
matrox-tv-standard=pal
matrox-cable-type=scart-rgb
fbdev=/dev/fb0
no-vt
no-vt-switch
no-vt-switching
no-graphics-vt
disable-module=linux_input
disable-module=nvidia
disable-module=ati128
disable-module=radeon
disable-module=cyber5k
disable-module=tdfx
disable-module=neomagic
disable-module=nsc
disable-module=joystick
disable-module=lirc
disable-module=sonypi
sync

...and it worked for mplayer. I have the TV connected via a
SUB15->Scart-Cable to the second head.

Regards
Cornelius



Justin Wetherell wrote:
> What's your directfbrc file look like? Are you sure it isn't playing on the
> second head?
> 
> On 12/21/05, Cornelius Koelbel <[EMAIL PROTECTED]> wrote:
> 
>>Hello List,
>>
>>I'd like to get freevo up and running.
>>I saw it on my main machine. looks nice.
>>But I'd like to put it on my computer in the living room, that is
>>connected to my TV.
>>
>>Got a Matrox G400 DH.
>>
>>I set up everything, that I get videos displayed by:
>>
>>mplayer -vo dfbmga:crtc2:spic:noinput:bes:tvnorm=pal
>>
>>But I also would like to get freevo on the TV.
>>
>>When I start freevo:
>>--snip--
>>[EMAIL PROTECTED] ~]# freevo
>>
>>Error: TV_RECORD_DIR not set
>>Please set TV_RECORD_DIR to the directory, where recordings should be
>>stored
>>or remove the tv plugin. Autoset variable to /freevo/azureus.
>>
>>Error: VIDEO_SHOW_DATA_DIR not found
>>
>>Error: can't find /tmp/TV.xml
>>Use xmltv to create this file or when you don't want to use the tv
>>module at all, add TV_CHANNELS = [] and plugin.remove('tv') to your
>>local_conf.py. TVguide is deactivated now.
>>
>>WARNING: PyLirc not found, lirc remote control disabled!
>>(*) DirectFB/Config: Parsing config file '/etc/directfbrc'.
>>(*) DirectFB/Core: Single Application Core. (2005-12-20 01:34)
>>(*) Direct/Memcpy: Using MMXEXT optimized memcpy()
>>(*) DirectFB/Core: doing sync()...
>>(*) Direct/Modules: suppress module 'joystick'
>>(*) Direct/Modules: suppress module 'linux_input'
>>(*) Direct/Modules: suppress module 'lirc'
>>(*) Direct/Modules: suppress module 'sonypi'
>>(*) Direct/Thread: Running 'PS/2 Input' (INPUT, 2053)...
>>(!!!)  *** UNIMPLEMENTED [fusion_reactor_set_lock] *** [reactor.c:797]
>>(*) DirectFB/Input: IMPS/2 Mouse 1.0 (Convergence GmbH)
>>(*) DirectFB/Genefx: MMX detected and enabled
>>(*) DirectFB/Graphics: Matrox G400 0.7 (directfb.org)
>>(*) DirectFB/Core/WM: Default 0.2 (Convergence GmbH)
>>SDL DirectFB_SetVideoMode: [EMAIL PROTECTED], flags: 0x
>>--snip--
>>
>>The TV stays black.
>>As mentioned, running mplayer works fine.
>>
>>Here is my config /etc/freevo/freevo.conf
>>--snip--
>>cdparanoia = /usr/bin/cdparanoia
>>chanlist = us-cable
>>display = dfbmga
>>fbxine = /usr/bin/fbxine
>>flac = /usr/bin/flac
>>geometry = 720x576
>>jpegtran = /usr/bin/jpegtran
>>lame = /usr/bin/lame
>>lsdvd = /usr/bin/lsdvd
>>mencoder = /usr/bin/mencoder
>>mplayer = /usr/bin/mplayer
>>oggenc = /usr/bin/oggenc
>>renice = /usr/bin/renice
>>setterm = /usr/bin/setterm
>>tv = pal
>>version = 2.1
>>xine = /usr/bin/xine
>>
>>--snip--
>>Any help is highly appriciated.
>>
>>Regards
>>Cornelius
>>
>>
>>
> 
> 
> --
> Diese Nachricht wurde auf Viren und andere gefährliche Inhalte untersucht
> und ist - aktuelle Virenscanner vorausgesetzt - sauber.
> MailScanner dankt transtec Computer für die freundliche Unterstützung.
> 
> 


smime.p7s
Description: S/MIME Cryptographic Signature


[Freevo-users] Freevo won't start with dfbmga

2005-12-20 Thread Cornelius Koelbel
Hello List,

I'd like to get freevo up and running.
I saw it on my main machine. looks nice.
But I'd like to put it on my computer in the living room, that is
connected to my TV.

Got a Matrox G400 DH.

I set up everything, that I get videos displayed by:

mplayer -vo dfbmga:crtc2:spic:noinput:bes:tvnorm=pal

But I also would like to get freevo on the TV.

When I start freevo:
--snip--
[EMAIL PROTECTED] ~]# freevo

Error: TV_RECORD_DIR not set
Please set TV_RECORD_DIR to the directory, where recordings should be stored
or remove the tv plugin. Autoset variable to /freevo/azureus.

Error: VIDEO_SHOW_DATA_DIR not found

Error: can't find /tmp/TV.xml
Use xmltv to create this file or when you don't want to use the tv
module at all, add TV_CHANNELS = [] and plugin.remove('tv') to your
local_conf.py. TVguide is deactivated now.

WARNING: PyLirc not found, lirc remote control disabled!
(*) DirectFB/Config: Parsing config file '/etc/directfbrc'.
(*) DirectFB/Core: Single Application Core. (2005-12-20 01:34)
(*) Direct/Memcpy: Using MMXEXT optimized memcpy()
(*) DirectFB/Core: doing sync()...
(*) Direct/Modules: suppress module 'joystick'
(*) Direct/Modules: suppress module 'linux_input'
(*) Direct/Modules: suppress module 'lirc'
(*) Direct/Modules: suppress module 'sonypi'
(*) Direct/Thread: Running 'PS/2 Input' (INPUT, 2053)...
 (!!!)  *** UNIMPLEMENTED [fusion_reactor_set_lock] *** [reactor.c:797]
(*) DirectFB/Input: IMPS/2 Mouse 1.0 (Convergence GmbH)
(*) DirectFB/Genefx: MMX detected and enabled
(*) DirectFB/Graphics: Matrox G400 0.7 (directfb.org)
(*) DirectFB/Core/WM: Default 0.2 (Convergence GmbH)
SDL DirectFB_SetVideoMode: [EMAIL PROTECTED], flags: 0x
--snip--

The TV stays black.
As mentioned, running mplayer works fine.

Here is my config /etc/freevo/freevo.conf
--snip--
cdparanoia = /usr/bin/cdparanoia
chanlist = us-cable
display = dfbmga
fbxine = /usr/bin/fbxine
flac = /usr/bin/flac
geometry = 720x576
jpegtran = /usr/bin/jpegtran
lame = /usr/bin/lame
lsdvd = /usr/bin/lsdvd
mencoder = /usr/bin/mencoder
mplayer = /usr/bin/mplayer
oggenc = /usr/bin/oggenc
renice = /usr/bin/renice
setterm = /usr/bin/setterm
tv = pal
version = 2.1
xine = /usr/bin/xine

--snip--
Any help is highly appriciated.

Regards
Cornelius


smime.p7s
Description: S/MIME Cryptographic Signature