Re: [Freevo-users] dxr3 video problems (problem found) - Don't use www-server and dxr3 together

2003-10-02 Thread Wan Tat Chee
On Wed, 1 Oct 2003, Adam Stephens wrote:

 this is how i do it. it works.
 
 -atom
 
 Michael Ruelle wrote:
  For now try running the webserver using the boot or init scripts rather
  than as a plugin. Does this problem still occur?
  
It sounds like the child process is still holding onto the video out when 
run under freevo.

T.C.

Wan Tat Chee (Lecturer)
School of Computer Science, Univ. of Science Malaysia,
11800 USM, Penang, Malaysia.  Rm.625 Ofc Ph: +604 653-3888 x 3617
NRG Lab Admin: +604 659-4757   Rm.601-E Ofc Ph: +604 653-4396
Internet: [EMAIL PROTECTED]Web: http://nrg.cs.usm.my/~tcwan
GPG Key : http://nrg.cs.usm.my/~tcwan/tcw_gpg-20030322.asc
F'print : DCF2 B9B2 FA4D 1208 AD59  14CA 9A8F F54D B2C4 63C7



---
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] memory card reader

2003-10-02 Thread Bart Heremans
Hi,

You will need some modules from the kernel.

USB modules
MSdos / VFAT file system modules
SCSI + SCSI Generic modules

you have to load the modules then insert the usb card reader and it will
porbably be mapped at /dev/sda (and others if it is a multi card reader)

Create a mount point an then you could mount /dev/sda1 to the mont point.

I'm sure that you find detailed procedures with google.

Bart
- Original Message 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Subject: [Freevo-users] memory card reader
Date: 02/10/03 04:35


 I want to hookup my memory card reader to Linux. Does anyone know how to
do
 this?



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








---
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] memory card reader

2003-10-02 Thread skeeterskip
It seems like it might be possible to have Freevo read pictures on memory
card in Pictures section.

- Original Message - 
From: Bart Heremans [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, October 02, 2003 12:26 AM
Subject: Re: [Freevo-users] memory card reader


 Hi,

 You will need some modules from the kernel.

 USB modules
 MSdos / VFAT file system modules
 SCSI + SCSI Generic modules

 you have to load the modules then insert the usb card reader and it will
 porbably be mapped at /dev/sda (and others if it is a multi card reader)

 Create a mount point an then you could mount /dev/sda1 to the mont point.

 I'm sure that you find detailed procedures with google.

 Bart
 - Original Message 
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
[EMAIL PROTECTED]
 Subject: [Freevo-users] memory card reader
 Date: 02/10/03 04:35

 
  I want to hookup my memory card reader to Linux. Does anyone know how to
 do
  this?
 
 
 
  ---
  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
 
 
 
 
 



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



---
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] memory card reader

2003-10-02 Thread Mathias
Aloha,

Am Donnerstag, 2. Oktober 2003 04:24 schrieb skeeterskip:

 I want to hookup my memory card reader to Linux. Does anyone know how to do
 this?

it depends on your linux distribution. If it is in USB-Cardreader, insert a 
card and just plug it in.

then type (as root)

tail /var/log/messages

and look what is found.

Sep 18 09:45:09 a1333 kernel: usb.c: USB device 3 (vend/prod 0x7cf/0x1001) is 
not claimed by any active driver.
Sep 18 09:45:12 a1333 /etc/hotplug/usb.agent: Setup usb-storage for USB 
product 7cf/1001/1000
Sep 18 09:45:12 a1333 kernel: Initializing USB Mass Storage driver...
Sep 18 09:45:12 a1333 kernel: usb.c: registered new driver usb-storage
Sep 18 09:45:12 a1333 kernel: scsi2 : SCSI emulation for USB Mass Storage 
devices
Sep 18 09:45:12 a1333 kernel:   Vendor: Casio Model: QV DigitalCamera  
Rev: 1000
Sep 18 09:45:12 a1333 kernel:   Type:   Direct-Access  
ANSI SCSI revision: 02
Sep 18 09:45:12 a1333 kernel: Attached scsi removable disk sdc at scsi2, 
channel 0, id 0, lun 0
Sep 18 09:45:12 a1333 kernel: usb-uhci.c: interrupt, status 3, frame# 519
Sep 18 09:45:12 a1333 kernel: SCSI device sdc: 96768 512-byte hdwr sectors (50 
MB)
Sep 18 09:45:12 a1333 kernel: sdc: Write Protect is off
Sep 18 09:45:12 a1333 kernel:  sdc: sdc1
Sep 18 09:45:12 a1333 kernel: USB Mass Storage support registered.


Here you can see that my Digital Camera (which acts as mass storage device)
is found as /dev/sdc1

so create a directory once:
mkdir /mnt/sdc1

if you have a card inserted try:
mount /dev/sdc1 /mnt/sdc1

you find your files now in /mnt/sdc1

after usage
umount /dev/sdc1


Regards, Mathias



---
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] memory card reader

2003-10-02 Thread John Snowdon
I'm just thinking it would be quite cool to have some kind of script, or
something to do with automount that detects a memory stick is inserted
and adds a suitable entry to the Freevo playlist... Whilst running, if
poss.

In my personal siutation (freevo in-car setup), it would be a great way
of temporarily adding an album or two (should be fast enough for mp3
playback).. By sticking the memory into a usb socket in the dashboard or
something.

 John Snowdon - IT Support Specialist
-==-
 Faculty of Medical Sciences Computing Dept
 School of Medical Education Development
 University of Newcastle

 Phone : 0191 245 4230
 Email : [EMAIL PROTECTED]


-Original Message-
From: Mathias [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 08:38
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] memory card reader


Aloha,

Am Donnerstag, 2. Oktober 2003 04:24 schrieb skeeterskip:

 I want to hookup my memory card reader to Linux. Does anyone know how
to do
 this?

it depends on your linux distribution. If it is in USB-Cardreader,
insert a 
card and just plug it in.

then type (as root)

tail /var/log/messages

and look what is found.

Sep 18 09:45:09 a1333 kernel: usb.c: USB device 3 (vend/prod
0x7cf/0x1001) is 
not claimed by any active driver.
Sep 18 09:45:12 a1333 /etc/hotplug/usb.agent: Setup usb-storage for USB 
product 7cf/1001/1000
Sep 18 09:45:12 a1333 kernel: Initializing USB Mass Storage driver...
Sep 18 09:45:12 a1333 kernel: usb.c: registered new driver usb-storage
Sep 18 09:45:12 a1333 kernel: scsi2 : SCSI emulation for USB Mass
Storage 
devices
Sep 18 09:45:12 a1333 kernel:   Vendor: Casio Model: QV
DigitalCamera  
Rev: 1000
Sep 18 09:45:12 a1333 kernel:   Type:   Direct-Access

ANSI SCSI revision: 02
Sep 18 09:45:12 a1333 kernel: Attached scsi removable disk sdc at scsi2,

channel 0, id 0, lun 0
Sep 18 09:45:12 a1333 kernel: usb-uhci.c: interrupt, status 3, frame#
519
Sep 18 09:45:12 a1333 kernel: SCSI device sdc: 96768 512-byte hdwr
sectors (50 
MB)
Sep 18 09:45:12 a1333 kernel: sdc: Write Protect is off
Sep 18 09:45:12 a1333 kernel:  sdc: sdc1
Sep 18 09:45:12 a1333 kernel: USB Mass Storage support registered.


Here you can see that my Digital Camera (which acts as mass storage
device)
is found as /dev/sdc1

so create a directory once:
mkdir /mnt/sdc1

if you have a card inserted try:
mount /dev/sdc1 /mnt/sdc1

you find your files now in /mnt/sdc1

after usage
umount /dev/sdc1


Regards, Mathias



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


---
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] memory card reader

2003-10-02 Thread John Snowdon
Excellent, I'll have to give that a try. 

 John Snowdon - IT Support Specialist
-==-
 Faculty of Medical Sciences Computing Dept
 School of Medical Education Development
 University of Newcastle

 Phone : 0191 245 4230
 Email : [EMAIL PROTECTED]


-Original Message-
From: Trevor Phillips [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 09:45
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] memory card reader


On Thursday 02 October 2003 15:57, John Snowdon wrote:
 I'm just thinking it would be quite cool to have some kind of script,
or
 something to do with automount that detects a memory stick is inserted
 and adds a suitable entry to the Freevo playlist... Whilst running, if
 poss.

Don't quote me on it, but I *think* I set mine up as just a CD drive
entry, 
with the correct scsi drive device, and a mount point.

If not, then I would've done it using autofs to automount on demand. (I 
auto-mount a lot of things for my media box - remote Windows shares,
etc... 
Very useful...)

Either way, it's quite easy to set up, and works well, even for playing
movies 
off USB flash drives.

-- 
. Trevor Phillips -   http://jurai.murdoch.edu.au/ .

: Web Technical Administrator -  [EMAIL PROTECTED] :

| IT Services-  Murdoch University |

 
| On nights such as this, evil deeds are done. And good deeds, of /
| course. But mostly evil, on the whole. /
 \  -- (Terry Pratchett, Wyrd Sisters)  /



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


---
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] Re: How to handle more keys ?

2003-10-02 Thread Dirk Meyer
a.flament wrote:
 Thank's for this great project.
 I would like to handle key like XF86AudioMute, XF86AudioPlay,
 XF86PowerOff, XF86Favorites etc... (or there equivalent in console
 mode)

 How can I do that ? Is there a configuration file ? Do I have to
 modify source ?

In cvs you can set KEYMAP (from event.py). But you need to know the
keycodes for the keys. You can map the key to a button and than map
the button to an event.


Dischi

-- 
AOL for Dummies is kind of redundant, don't you think?


---
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] Re: lirc commands

2003-10-02 Thread Dirk Meyer
William Holt wrote:
 Reading through the documentation it says to look at the lircrc
 example file. Where is this file?  I need it to know what to put in
 my lircrc.

There are some files in contrib/lirc and cvs version of freevo has a
helper to generate this file. 


Dischi

-- 
-
Hi! I'm a .signature virus! Copy me into your ~/.signature to help me spread!
-


---
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] Re: Debugging problems with tv.xml file

2003-10-02 Thread Dirk Meyer
Robert Rozman wrote:
 Will Freevo handle ISO - 8859-2 characters ?

No, all chars are mapped to Latin-1. That should be changed in the
future. 


Dischi

-- 
I love my work, I could sit and watch it all day long.


---
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] CVS, Im Begging you for help!!

2003-10-02 Thread Paul Cowper
 
Ok I have been trying out cvs for ages. Cant get it to work

Do I need to compile it? If so how do I got about it. I tried make and
make install but dosent work, What do I need to do (all the steps pleas)
once I have downloaded the snap shot?

Thx Paul


---
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] TVTime Xfree86

2003-10-02 Thread Paul Cowper
I am using TvTime (I think its better than Mplayer) and found that it
didn't work with Fbdev only X11. But I am thinking of a work around. You
see Providing it dosent require GTK which I don't think it does, there
in theory should be no reason for it not to use X11 with ie BlackBox or
WindowMaker. And as X11 supports at least the nvidia tvout then than
that should cause no problem.

Boot up the machine. Starts str8 into X with WindowMaker and a script
that boots freevo automaticly.

 


-Original Message-
From: Niklas Brunlid [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 10:03
To: Freevo users mailing list

With the switch to TVTime for TV viewing, will Freevo require X? Or can
TVTime be run on a framebuffer-only setup?

I'm asking because I've never been that good at setting up XFree86 in
the first place, and setting it up with working TV-out is not something
I'd like to do... =)

/ Niklas


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


This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk



---
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] Re: Debugging problems with tv.xml file

2003-10-02 Thread Robert Rozman
Hello,


- Original Message - 
From: Dirk Meyer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, October 02, 2003 10:52 AM
Subject: [Freevo-users] Re: Debugging problems with tv.xml file


 Robert Rozman wrote:
  Will Freevo handle ISO - 8859-2 characters ?

 No, all chars are mapped to Latin-1. That should be changed in the
 future.

Where is this mapping taking place ? Could this problem be solved with
another 8859-2 fonts and some change in code ?

Regards,

Robert.















 Dischi

 -- 
 I love my work, I could sit and watch it all day long.


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



---
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] TVTime Xfree86

2003-10-02 Thread Per Wigren
Why use a windowmanager at all? Just start freevo as the windowmanager! ;)

// Wigren

Paul Cowper wrote:

I am using TvTime (I think its better than Mplayer) and found that it
didn't work with Fbdev only X11. But I am thinking of a work around. You
see Providing it dosent require GTK which I don't think it does, there
in theory should be no reason for it not to use X11 with ie BlackBox or
WindowMaker. And as X11 supports at least the nvidia tvout then than
that should cause no problem.
Boot up the machine. Starts str8 into X with WindowMaker and a script
that boots freevo automaticly.


-Original Message-
From: Niklas Brunlid [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 10:03
To: Freevo users mailing list

With the switch to TVTime for TV viewing, will Freevo require X? Or can
TVTime be run on a framebuffer-only setup?
I'm asking because I've never been that good at setting up XFree86 in
the first place, and setting it up with working TV-out is not something
I'd like to do... =)
/ Niklas

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

This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk

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





---
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] TVTime Xfree86

2003-10-02 Thread Paul Cowper
How do you do that? I never knew you could?

/// Paul \\\


-Original Message-
From: Per Wigren [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 11:14
To: [EMAIL PROTECTED]

Why use a windowmanager at all? Just start freevo as the
windowmanager! ;)

// Wigren


Paul Cowper wrote:

I am using TvTime (I think its better than Mplayer) and found that it 
didn't work with Fbdev only X11. But I am thinking of a work around. 
You see Providing it dosent require GTK which I don't think it does, 
there in theory should be no reason for it not to use X11 with ie 
BlackBox or WindowMaker. And as X11 supports at least the nvidia tvout 
then than that should cause no problem.

Boot up the machine. Starts str8 into X with WindowMaker and a script 
that boots freevo automaticly.

 


-Original Message-
From: Niklas Brunlid [mailto:[EMAIL PROTECTED]
Sent: 02 October 2003 10:03
To: Freevo users mailing list

With the switch to TVTime for TV viewing, will Freevo require X? Or can

TVTime be run on a framebuffer-only setup?

I'm asking because I've never been that good at setting up XFree86 in 
the first place, and setting it up with working TV-out is not something

I'd like to do... =)

/ Niklas


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

___
_ This e-mail has been scanned for all viruses by Star Internet. The 
service is powered by MessageLabs. For more information on a proactive 
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
___
_


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

  





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


This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk



---
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] TVTime Xfree86

2003-10-02 Thread Paul Cowper
That sounds good I will try it, Just one proble. When the Xserver shuts
down, vt screens crash!! But it only happened since the new Nvidia
drivers. Could be clashing with something in SuSE. 


-Original Message-
From: Esben Jensen [mailto:[EMAIL PROTECTED] 
Sent: 02 October 2003 11:44
To: [EMAIL PROTECTED]

On Thursday 02 October 2003 12:32, Paul Cowper wrote:
 How do you do that? I never knew you could?

cd /path/to/freevo
xinit ./freevo


Should do the trick, the X server will then shut down as soon as freevo
exits.

--
Esben Jensen



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


This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk



---
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] memory card reader

2003-10-02 Thread Gray, Tim
plug it in.

I'm serious. that is all I have ever done with my sandisk reader. I plugged
it in the usb port and it appear's as a drive that you now mount.  redhat 8
and above will place a icon on your desktop to access it when you insert a
card in the reader (using KDE)

otherwise do a search on google for linux usb card reader

I personally wrote a perl script that copies all contents of any CF card
inserted into my pictures directory on my freevo box. plug it in when the
green light stop's blinking you can take it back out and use the card again
in the camera.

and no, I cant share the perl script yet.. I want to convert it to python
and make a module for freevo that will do this function.

-Original Message-
From: skeeterskip [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 01, 2003 10:24 PM
To: [EMAIL PROTECTED]
Subject: [Freevo-users] memory card reader


I want to hookup my memory card reader to Linux. Does anyone know how to do
this?



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


---
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] recording problem....

2003-10-02 Thread Gray, Tim
Great! mp1e is very cool... except it cannot control the tuner bummer.  

What do you do to change channels?  v4lctl from what I have found tends to
be a pain in the butt.


-Original Message-
From: Aubin Paul [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 01, 2003 7:01 PM
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] recording problem


mp1e; it's available in the zapping.sourceforge.net CVS... very easy
to use.

On Wed, Oct 01, 2003 at 04:26:42PM -0400, Gray, Tim wrote:
 what do you record with to get multiplexed mpeg files?
 
 I might just go that route also.
 
 
 -Original Message-
 From: Aubin Paul [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, October 01, 2003 2:06 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [Freevo-users] recording problem
 
 
 On Wed, Oct 01, 2003 at 11:50:04AM -0400, Gray, Tim wrote:
  that's the wierd part... it is set for 32000
 
 What is? The card or mencoder? Both have to know about the khz.
 
  I dont think this tv card is a 4400 capable card... but I'll try to
swing
  the audio bitrate around...
 
 It shouldn't need to be 32khz, if you can tell mencoder that it is.
 Frankly, I never used mencoder, because I prefer mpeg files, but mp1e
 had a frequency option, and I'm mencoder does.
 
 Aubin
 
 
 ---
 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
 
 
 ---
 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


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


---
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] freevo added tv tuner control suggestion...

2003-10-02 Thread Gray, Tim
how about adding a couple of variables in freevo that can set the brightness
and contrast for the capture device?

It's hit and miss when I use v4lctl. it works after I start freevo, exit and
then issue the commands, but if I issue the v4lctl commands before freevo
starts and configures the tv capture device the settings are lost.


just an idea to make it easier for everyone.


---
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] recording problem....

2003-10-02 Thread Aubin Paul
On Thu, Oct 02, 2003 at 09:24:14AM -0400, Gray, Tim wrote:
 Great! mp1e is very cool... except it cannot control the tuner bummer.  
 
 What do you do to change channels?  v4lctl from what I have found tends to
 be a pain in the butt.

I use mplayer; I made a simple shell script to do it... 

echo q | mplayer -ao null -vo null tv://[channel]

It just changes the channel and quits immediately. It's simple and you
probably already have it.

Aubin


---
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] Re: DXR3 Configuring OSS in XINE

2003-10-02 Thread Dirk Meyer
Paul Kimberley wrote:
 I was able to fix this in mplayer by adding -ao oss:/dev/em8300_ma-0, but I
 can't seem to find the flag for xine to specify the oss device I want to
 use.

You can only specify a /dev/dsp[number]. Just create a link /dev/dsp2
to the dxr3 device.


Dischi

-- 
There are very few problems that cannot be solved by orders ending with
'or die.' - Alistair J.R. Young


---
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] ATI All In Wonder Radeon

2003-10-02 Thread Josh Peck
I have an AIW Pro 8MB PCI (Rage Pro w/ BT829) AVview works with RH8.0
using the ati.2 drivers however tv out is only possible with vesa and as
far as I can tell AVview needs the ati.2 driver for tv in. the GATOS
project has published experimental tv out code for the ATI mobility but
they claim it can't do tv in or capture when that option is enabled. it
sounds to me like the same problem different driver. my current problem
involves getting km (the capture code) to compile.

I'm throwing in the towel with ATI and going with a 2 card solution just
so I can get my freevo box working.

I was also thinking about revisiting these problem with GATOS later.

I'd be interested in helping (test/devel) a freevo plugin for ATI
Hardware.

On Mon, 2003-09-29 at 17:16, Jesse Stay wrote:
 Thanks for sharing your experiences.  I'm for sorting out the problems
 with the GATOS drivers.  From my experience there are many weaknesses
 with those drivers, and I would love to see something better that
 actually works all the time.  I'd rather not have to use another PCI
 slot just for a tuner card when I can have an all-in-one solution to
 save space in my PC.
 
 -Jesse
 
  -Original Message-
  From: Jorn A Hansen [mailto:[EMAIL PROTECTED]
  Sent: Monday, September 29, 2003 6:53 PM
  To: [EMAIL PROTECTED]
  Subject: Re: [Freevo-users] ATI All In Wonder Radeon
  
  
  Jesse Stay wrote:
  
Has anyone had success getting Freevo to work with ATI 
  All-In-Wonder
Radeon cards? I know MythTV doesn't work with them, so I thought
before I try I'd see if it was possible with Freevo.
  
  I have TV out working using the stock 4.3.0 version of XFree86 on a 
  Redhat 9 based system. As I recall it I followed the 
  instructions in the 
  http://freevo.sourceforge.net/cgi-bin/moin.cgi/Radeon7000Page 
  and set it 
  up the easy way basically using the vesa driver - not the ati or 
  radeon one! This allows me to use Freevo for music and 
  watching pictures 
  and movies.
  
  But I guess what you _really_ want to do is to use it for 
  capturing TV 
  for either recording or viewing. I have not tried that yet though.
  
  Because Freevo's TV capturing capabilities rely on external programs 
  like either mplayer or tvtime for tv viewing it's more a 
  question if we 
  can get one of the external programs to work with the AIW Radeon card.
  
  http://tvtime.sourceforge.net/hardware.html#aiw suggest that 
  there could 
  be problems doing that and I saw a similar note somewhere on 
  the mplayer 
  pages. But maybe since we are some people in the same boat we 
  could help 
  each other out and do something about it. I think there are a 
  couple of 
  options here:
  
  1. Sort out the possible problems with the GATOS drivers that are 
  mentioned on the tvtime page referred above to make it work 
  with either 
  tvtime or mplayer.
  
  2. We could replace the mplayer/tvtime plugins in Freevo with 
  something 
  that works for the AIW Radeon like AVview from the Gatos project.
  
  3. Maybe someone has another even better idea... :-)
  
  BTW searching the http://gatos.sf.net project pages *just 
  once more* for 
  clues when writing this reply i happend to find this 
  http://www.reades.com/radeon.html HOWTO which gives some 
  hints on how to 
  proceed with the GATOS stuff.
  
  Any thoughts?
  
  /JornH
  
  
  
  ---
  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
  
 
 
 ---
 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
-- 
Josh Peck
[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] has anybody a clean modules.conf for btaudio,tvmixer,alsa (e.g. ens1371),em8300 with correct dsp mappings ?

2003-10-02 Thread Thomas Kranz
Thanks so far,
so I've to clean up my modules.conf and keep attention of the module install order.
No other chance to map the audio devices to /dev/dspx ?
last questions: loading btaudio results at my computer in dsp1 for digital and dsp3 
for analog
I don't know what dsp2 is used for, any chance to get the mapped device using dsp2 ?
Last but not least I've to link the em8300-ma-0 to a free dsp device (for eg working 
xine audio out to the H+. Is this correct ?
I need a simple command to see the used devices mapped to dsp. btaudio mappings are 
listed in the kernel message log when
loading the module, but what is with the rest. I'm not very firm with alsa/oss 
development but there must be a simple command.
I had to know which hardware device occupied my dsp2. What's the difference between 
btaudio and tvaudio ?

Here are some of my loaded modules:

tvaudio12640   0  (autoclean) (unused)
bttv   95552   0 
msp340015632   1  (autoclean)
snd-seq-midi3520   0  (unused)
snd-seq-midi-event  3264   0  [snd-seq-midi]
snd-seq38124   0  [snd-seq-midi snd-seq-midi-event]
btaudio10272   0 
snd-pcm-oss37220   0 
snd-mixer-oss  11392   0  [snd-pcm-oss]
snd-ens137111556   0 
snd-pcm56192   0  [snd-pcm-oss snd-ens1371]
snd-timer  14208   0  [snd-seq snd-pcm]
snd-rawmidi12480   0  [snd-seq-midi snd-ens1371]
snd-seq-device  3956   0  [snd-seq-midi snd-seq snd-rawmidi]
snd-ac97-codec 35232   0  [snd-ens1371]
snd28384   0  [snd-seq-midi snd-seq-midi-event snd-seq snd-pcm-oss 
snd-mixer-oss snd-ens1371 snd-pcm snd-timer snd-rawmidi s
nd-seq-device snd-ac97-codec]
ide-scsi9088   0 
sr_mod 14008   0  (autoclean)
em8300 42660   0  (autoclean)
adv717x 2944   0  (autoclean) (unused)
cdrom  28800   0  (autoclean) [sr_mod]
rtc 6044   0 
ppdev   7748   0  (autoclean)
tvmixer 3360   1  (autoclean)
tuner   9476   1  (autoclean)
i2c-algo-bit8492   3  (autoclean) [bttv em8300]
videodev5536   3  (autoclean) [bttv]
i2c-isa 1284   0  (autoclean) (unused)
i2c-viapro  4040   0  (autoclean) (unused)
i2c-proc6688   0  [it87]
i2c-core   15016   0  [tvaudio bttv msp3400 adv717x tvmixer tuner 
i2c-algo-bit it87 i2c-isa i2c-viapro i2c-proc]
grip4056   0  (autoclean) (unused)
gameport1468   0  [snd-ens1371 grip]
snd-page-alloc  5572   0  [snd-pcm]
joydev  7104   0 
evdev   4160   0  (unused)


  I've tried to force btaudio to specific dsp-devices with the modules
  options, but it doesn't work. So loading without snd-pcm-oss module leads
  btaudio to dsp0 (digital) and dsp1 (analog). If snd-pcm-oss is loaded it
  results into dsp1 and dsp3. What's the role of tvmixer-module ? (system
  message: tvmixer can't find mixer device if loading after btaudio). In my
  opion there is no clear dsp mapping and documentation.
  Is there a command to list all used dsp devices ?

 I'm not aware of any; but the dsp devices are based on when the module
 are loaded. What I used to do was make sure snd-pcm-oss was loaded
 BEFORE I loaded btaudio, and then the devices always showed up as:

 /dev/dsp0 - ALSA OSS
 /dev/dsp1 - BTAudio device
 /dev/dsp2 - BTaudio device

 Then, it was just a matter of using the digital device and specifying
 32000 as the frequency for mp1e.

 (dmesg will tell you which is which)

 Aubin

  I want a clear definition of the dsp devices because the record server
  needs an dsp device (mencoder option) and this must be the digital dsp of
  btaudio when recording with the internal bttv dsp. (remember to all:do
  not forget to record only with 32000Hz - dsp limitation and using the
  digital dsp).
 
  It seems that the options given by modinfo btaudio are not working.
  Maybe this is the wrong discussion list (a alsa/bttv problem) but freevo
  needs a clean configuration and so many devices are common in an
  homevideo pc. The module em8300 doesn't need a dsp mapping but it would
  be fine. Hopefully I didn't run into a mess up with my pre/post install
  modules. So an working example posted would me help with options due to
  alsa,tvmixer,btaudio and alsa-oss.
 
  Thanks,
  Thomas
 
  Here is my extract of modules.conf (sorry a little bit messed up):
 
  # --- ALSACONF verion 0.9.6 ---
  alias char-major-116 snd
  alias snd-card-0 snd-ens1371
  options snd-ens1371 index=0
  # joystick=0x200
  post-install snd-ens1371 modprobe -k gameport
  pre-remove snd-ens1371 modprobe -r gameport
 
  # OSS
  alias char-major-14 soundcore
  alias sound-slot-0 snd-card-0
 
  # CARD #1 PCI64
  alias sound-service-0-0 snd-mixer-oss
  alias sound-service-0-1 

[Freevo-users] ivtv-fb and freevo

2003-10-02 Thread Ryan Novosielski
Has anyone used this combo successfully that could point me at some help?

I also use tdfxfb as my console -- how can I make freevo use fb1 instead
of fb0?

__
 _ ___ __  _  _   __  Ryan Novosielski - Rutgers College Class of 2004
|_) | | | /__ |_ |_) (_   201 Easton Ave, New Brunswick  -  (732) 249-9695
| \ |_| | \_| |_ | \ __)  AIM - H: RyanSki21, O: SainteX - ICQ UIN: 3239479
__



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