Re: [Freevo-users] xine speed patch

2007-01-28 Thread Paul Sijben
Frank,

I do not have the events in my local_conf.py. I do not seem to need 
them. However my lircrc binds Skip to CH- like this:

begin
   prog=freevo
   button=Replay
   config=CH+
end
begin
   prog=freevo
   button=Skip
   config=CH-
end
begin
   prog=freevo
   button=Replay/SkipBackward
   config=CH+
end
begin
   prog=freevo
   button=SkipForward
   config=CH-
end

And through the regular freevo mechanism that is mapped to 
PLAYLIST_NEXT/PREV.

Does this setup work for you?

Paul

Antispam wrote:
 Paul,
 
 If checked you patch but I'm missing something.
 
 Can you tell me where If gone wrong?
 
 Patched:
 /usr/lib/python2.4/site-packages/freevo/video/plugins/xine.py
 
 Added to local_cong.py:
 EVENTS['video']['SKIP'] = Event(PLAYLIST_NEXT)
 EVENTS['video']['REPLAY'] = Event(PLAYLIST_PREV)
 
 Logmessage:
 no event mapping for key SKIP in context dvd
 send button event BUTTON arg=SKIP
 EVENT= BUTTON
 
 Thanks,
 Frank 
 
 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Namens Paul Sijben
 Verzonden: 29 November 2006 17:02
 Aan: freevo-users@lists.sourceforge.net
 Onderwerp: [Freevo-users] xine speed patch
 
 attached is a quick patch I did for xine. It allows the playback speed to be
 changed with the skip and prev keys on your remote.
 
 this may be useful to others too ;-)
 
 BTW: I have got a similar patch for mplayer (1.0rc1) but I am only be able
 to speed up the sound with that, not the video. Is that supposed to
 happen???
 

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort  http://www.sijben.net

-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] xine speed patch

2007-01-28 Thread Antispam
Hoi Paul,

I've got a hauppauge remote with the following in my lircrc:

--- snip 
begin
prog   = freevo
button = REPLAY
config = REPLAY
end
begin
prog   = freevo
button = SKIP
config = SKIP
end 
--- snip 

So I thought I needed those. But I need to assign CH+/CH- to the replay and
skip functions!

Will try that tomorrow and post my results.

Thanks,
Frank



-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens Paul Sijben
Verzonden: 28 January 2007 09:48
Aan: freevo-users@lists.sourceforge.net
Onderwerp: Re: [Freevo-users] xine speed patch

Frank,

I do not have the events in my local_conf.py. I do not seem to need them.
However my lircrc binds Skip to CH- like this:

begin
   prog=freevo
   button=Replay
   config=CH+
end
begin
   prog=freevo
   button=Skip
   config=CH-
end
begin
   prog=freevo
   button=Replay/SkipBackward
   config=CH+
end
begin
   prog=freevo
   button=SkipForward
   config=CH-
end

And through the regular freevo mechanism that is mapped to
PLAYLIST_NEXT/PREV.

Does this setup work for you?

Paul

Antispam wrote:
 Paul,
 
 If checked you patch but I'm missing something.
 
 Can you tell me where If gone wrong?
 
 Patched:
 /usr/lib/python2.4/site-packages/freevo/video/plugins/xine.py
 
 Added to local_cong.py:
 EVENTS['video']['SKIP'] = Event(PLAYLIST_NEXT) 
 EVENTS['video']['REPLAY'] = Event(PLAYLIST_PREV)
 
 Logmessage:
 no event mapping for key SKIP in context dvd send button event BUTTON 
 arg=SKIP EVENT= BUTTON
 
 Thanks,
 Frank
 
 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Namens Paul Sijben
 Verzonden: 29 November 2006 17:02
 Aan: freevo-users@lists.sourceforge.net
 Onderwerp: [Freevo-users] xine speed patch
 
 attached is a quick patch I did for xine. It allows the playback speed 
 to be changed with the skip and prev keys on your remote.
 
 this may be useful to others too ;-)
 
 BTW: I have got a similar patch for mplayer (1.0rc1) but I am only be 
 able to speed up the sound with that, not the video. Is that supposed 
 to happen???
 

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort  http://www.sijben.net

-
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.phpp=sourceforgeCID=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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] xine speed patch

2007-01-28 Thread Paul Sijben


Antispam wrote:
 Hoi Paul,
 
 I've got a hauppauge remote with the following in my lircrc:
 
 --- snip 
 begin
 prog   = freevo
 button = REPLAY
 config = REPLAY
 end
 begin
 prog   = freevo
 button = SKIP
 config = SKIP
 end 
 --- snip 
 
 So I thought I needed those. 

Ah well, they ought to work...

But I need to assign CH+/CH- to the replay and
 skip functions!

That is how my setup is, I do not recall if I ended up at that because 
of some legacy issue or because of some other reason.

Otherwise you can always try the following:

 if event == PLAYLIST_NEXT or event==SKIP:
 self.app.write('SpeedFaster\n')
 self.speed*=2
 return True
 if event == PLAYLIST_PREV or event==REPLAY:
 self.app.write('SpeedSlower\n')
 self.speed*=.5
 return True


 
 Will try that tomorrow and post my results.
 
 Thanks,
 Frank
 
 
 
 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Namens Paul Sijben
 Verzonden: 28 January 2007 09:48
 Aan: freevo-users@lists.sourceforge.net
 Onderwerp: Re: [Freevo-users] xine speed patch
 
 Frank,
 
 I do not have the events in my local_conf.py. I do not seem to need them.
 However my lircrc binds Skip to CH- like this:
 
 begin
prog=freevo
button=Replay
config=CH+
 end
 begin
prog=freevo
button=Skip
config=CH-
 end
 begin
prog=freevo
button=Replay/SkipBackward
config=CH+
 end
 begin
prog=freevo
button=SkipForward
config=CH-
 end
 
 And through the regular freevo mechanism that is mapped to
 PLAYLIST_NEXT/PREV.
 
 Does this setup work for you?
 
 Paul
 
 Antispam wrote:
 Paul,

 If checked you patch but I'm missing something.

 Can you tell me where If gone wrong?

 Patched:
 /usr/lib/python2.4/site-packages/freevo/video/plugins/xine.py

 Added to local_cong.py:
 EVENTS['video']['SKIP'] = Event(PLAYLIST_NEXT) 
 EVENTS['video']['REPLAY'] = Event(PLAYLIST_PREV)

 Logmessage:
 no event mapping for key SKIP in context dvd send button event BUTTON 
 arg=SKIP EVENT= BUTTON

 Thanks,
 Frank

 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Namens Paul Sijben
 Verzonden: 29 November 2006 17:02
 Aan: freevo-users@lists.sourceforge.net
 Onderwerp: [Freevo-users] xine speed patch

 attached is a quick patch I did for xine. It allows the playback speed 
 to be changed with the skip and prev keys on your remote.

 this may be useful to others too ;-)

 BTW: I have got a similar patch for mplayer (1.0rc1) but I am only be 
 able to speed up the sound with that, not the video. Is that supposed 
 to happen???

 

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort  http://www.sijben.net

-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] VLC streaming towards freevo client

2007-01-28 Thread Geert Decorte



  Folks I need some advice,

  First I explain what I've got

  - a freevo recording server running on CC 4.0 (no gui) works  
perfect. This machine is also my home internet server (combining best  
of both worlds) On this machine I have vlc installed and I'm alrady  
capable of starting a live stream or a recorded stream from my PVR 500  
in the CC box. The client interface I have for the moment is a php  
webinterface (mozilla only) which works in linux and windows. It's  
client independend.


  Now I wanna implement live tv stream in a freevo client without TV  
card. (Everything streamed from my CC server)


  I'v created a fxd file capable of launching vlc on the client box  
in stream listening mode, and streamed content gets actualy played.


  (I'm using a modified vlc.py I grabbed from freevofreebox1.0.tgz)

  Now I need to find a way to start up vlc with the desired  
parameters on the server.


  rsh comes to my mind to do this from the command line.

  Is there any possibility to execute multiple commands from a fxd  
file? like starting the stream remotly and then start vlc localy to  
listen.


  Other aproaches?

  Geert


-
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.phpp=sourceforgeCID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] VLC streaming towards freevo client

2007-01-28 Thread Paul Sijben
Geert,

just for my information, why would you want to stream the data? Wouldn't 
an NFS or CIFS share achieve your goals simpler?

Paul Sijben

Geert Decorte wrote:
 Folks I need some advice,
 
 First I explain what I've got
 
 - a freevo recording server running on CC 4.0 (no gui) works perfect. 
 This machine is also my home internet server (combining best of both 
 worlds) On this machine I have vlc installed and I'm alrady capable of 
 starting a live stream or a recorded stream from my PVR 500 in the CC 
 box. The client interface I have for the moment is a php webinterface 
 (mozilla only) which works in linux and windows. It's client independend.
 
 Now I wanna implement live tv stream in a freevo client without TV card. 
 (Everything streamed from my CC server)
 
 I'v created a fxd file capable of launching vlc on the client box in 
 stream listening mode, and streamed content gets actualy played.
 
 (I'm using a modified vlc.py I grabbed from freevofreebox1.0.tgz)
 
 Now I need to find a way to start up vlc with the desired parameters on 
 the server.
 
 rsh comes to my mind to do this from the command line.
 
 Is there any possibility to execute multiple commands from a fxd file? 
 like starting the stream remotly and then start vlc localy to listen.
 
 Other aproaches?
 
 Geert
 
 
 
 
 -
 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.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort  http://www.sijben.net

-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] VLC streaming towards freevo client

2007-01-28 Thread Geert Decorte



  You can watch recorded movies using NFS or CIFS as I sometimes  
currently do, but AFAIK, you can't watch live TV when you don't have a  
TV card in the client. Putting the TV card on a server and stream the  
content is a way to have live TV on any computer in the network,  
without installing a extra TV card.


  For instance I have a wireless networked portable where I can watch  
TV. No need for TV cable connection or TV tunner thnx to the streaming  
concept. I have something working for the portable using php, but I  
like to extend this towards my freevo client. Yo can make any linux  
client make watch TV live without having a tuner, if you got a home  
server


  Quoting Paul Sijben [EMAIL PROTECTED]:


Geert,

just for my information, why would you want to stream the data? Wouldn't
an NFS or CIFS share achieve your goals simpler?

Paul Sijben

Geert Decorte wrote:

Folks I need some advice,

First I explain what I've got

- a freevo recording server running on CC 4.0 (no gui) works perfect.
This machine is also my home internet server (combining best of both
worlds) On this machine I have vlc installed and I'm alrady capable of
starting a live stream or a recorded stream from my PVR 500 in the CC
box. The client interface I have for the moment is a php webinterface
(mozilla only) which works in linux and windows. It's client independend.

Now I wanna implement live tv stream in a freevo client without TV card.
(Everything streamed from my CC server)

I'v created a fxd file capable of launching vlc on the client box in
stream listening mode, and streamed content gets actualy played.

(I'm using a modified vlc.py I grabbed from freevofreebox1.0.tgz)

Now I need to find a way to start up vlc with the desired parameters on
the server.

rsh comes to my mind to do this from the command line.

Is there any possibility to execute multiple commands from a fxd file?
like starting the stream remotly and then start vlc localy to listen.

Other aproaches?

Geert




-
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.phpp=sourceforgeCID=DEVDEV




___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


--
Paul Sijben        mailto:[EMAIL PROTECTED]
Amersfoort      http://www.sijben.net

-
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.phpp=sourceforgeCID=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.phpp=sourceforgeCID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] VLC streaming towards freevo client

2007-01-28 Thread Paul Sijben
I can watch programs currently being recorded from other freevo installs
than the on with the TV card, but true you can not simply stream from
the capture card.

Geert Decorte wrote:

 You can watch recorded movies using NFS or CIFS as I sometimes
 currently do, but AFAIK, you can't watch live TV when you don't have a
 TV card in the client. Putting the TV card on a server and stream the
 content is a way to have live TV on any computer in the network,
 without installing a extra TV card.

 For instance I have a wireless networked portable where I can watch
 TV. No need for TV cable connection or TV tunner thnx to the streaming
 concept. I have something working for the portable using php, but I
 like to extend this towards my freevo client. Yo can make any linux
 client make watch TV live without having a tuner, if you got a home server

 Quoting Paul Sijben [EMAIL PROTECTED]:

  Geert,
 
  just for my information, why would you want to stream the data? Wouldn't
  an NFS or CIFS share achieve your goals simpler?
 
  Paul Sijben
 
  Geert Decorte wrote:
  Folks I need some advice,
 
  First I explain what I've got
 
  - a freevo recording server running on CC 4.0 (no gui) works perfect.
  This machine is also my home internet server (combining best of both
  worlds) On this machine I have vlc installed and I'm alrady capable of
  starting a live stream or a recorded stream from my PVR 500 in the CC
  box. The client interface I have for the moment is a php webinterface
  (mozilla only) which works in linux and windows. It's client
 independend.
 
  Now I wanna implement live tv stream in a freevo client without TV
 card.
  (Everything streamed from my CC server)
 
  I'v created a fxd file capable of launching vlc on the client box in
  stream listening mode, and streamed content gets actualy played.
 
  (I'm using a modified vlc.py I grabbed from freevofreebox1.0.tgz)
 
  Now I need to find a way to start up vlc with the desired parameters on
  the server.
 
  rsh comes to my mind to do this from the command line.
 
  Is there any possibility to execute multiple commands from a fxd file?
  like starting the stream remotly and then start vlc localy to listen.
 
  Other aproaches?
 
  Geert
 
 
 
 
 
 
 -
  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.phpp=sourceforgeCID=DEVDEV
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 
  ___
  Freevo-users mailing list
  Freevo-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/freevo-users
 
  --
  Paul Sijbenmailto:[EMAIL PROTECTED]
  Amersfoort  http://www.sijben.net
 
 
 -
  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.phpp=sourceforgeCID=DEVDEV
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=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.phpp=sourceforgeCID=DEVDEV
 

 ___
 Freevo-users mailing list
 Freevo-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freevo-users
   

-- 
Paul Sijben mailto:[EMAIL PROTECTED]
Amersfoort, NL  http://www.sijben.net
tel:+31 334557522   fax:+31 33 4557523

-
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.phpp=sourceforgeCID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net

Re: [Freevo-users] VLC streaming towards freevo client

2007-01-28 Thread Dirk Meyer
Geert Decorte wrote:
   Is there any possibility to execute multiple commands from a fxd
 file? like starting the stream remotly and then start vlc localy to
 listen.

Use a shell script? 


Dischi

-- 
The truth may be out there, but lies are inside your head.
-- (Terry Pratchett, Hogfather)


pgpOKlcVaIjBM.pgp
Description: PGP 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.phpp=sourceforgeCID=DEVDEV___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] shoppingkart

2007-01-28 Thread Duncan Webb
Marc-Antón Kehr wrote:
 Hi,
 
 I have reported this to the bugtracker, but perhaps it´s not a bug  
 and I´m doing something wrong.
 When I try to copy directories e.g. from an USB stick to the another  
 directory with shoppingcart I get the message Event 'MENU_SELECT'  
 has crashed and this is what main-0.log says:
 
 Traceback (most recent call last):
File /usr/lib/python2.4/site-packages/freevo/main.py, line 321,  
 in eventhandler
  app.eventhandler(event)
File /usr/lib/python2.4/site-packages/freevo/menu.py, line 621,  
 in eventhandler
  action( arg=arg, menuw=self )
File /usr/lib/python2.4/site-packages/freevo/menu.py, line 92,  
 in select
  self.function(arg=self.arg, menuw=menuw)
File /usr/lib/python2.4/site-packages/freevo/plugins/ 
 shoppingcart.py, line 84, in copyHere
  cartfile.files.copy(self.item.dir)
File /usr/lib/python2.4/site-packages/freevo/item.py, line 83,  
 in copy
  shutil.copy(f, d)
File shutil.py, line 81, in copy
  copyfile(src, dst)
File shutil.py, line 47, in copyfile
  fsrc = open(src, 'rb')
 IOError: [Errno 21] Ist ein Verzeichnis

It's now fixed, in svn on both branches. At least, I hope it is.

Duncan


-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] freevo 1.7 svm / troubles with mminfo

2007-01-28 Thread Duncan Webb
Pascal Schirrmann wrote:
 Pascal Schirrmann a écrit :
 Hi,


 Any hints ?

   
 Crazy ! I just found out !
 
 I had a cdrom.so in the
  /usr/lib/python2.4/site-packages/kaa/metadata/disc/ directory
 
 I just have to do :
  rm /usr/lib/python2.4/site-packages/kaa/metadata/disc/cdrom.so
 
 to correct my trouble !
 
 I think I'll remove the whole
 /usr/lib/python2.4/site-packages/kaa directory and start a clean fresh 
 install of kaa...

You need to remove the whole tree and the build tree when the interfaces
change. This happens not too often but if funny things happen after a
svn update it's worth a try first.

Duncan


-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] PVR-350

2007-01-28 Thread Duncan Webb
Pascal Schirrmann wrote:
 Paul Sijben a écrit :
 Pascal,

 could you share your X config file with us (and other configs that 
 might be of relevance)?

 There are multiple people interested in this setup.

 Paul Sijben

 Yes, sure, I'll do that tomorrow.
 
 But this is highly related to the system setup : I did that two time 
 (same system, same PVR-350).
 One time with Mandrake 10.1
 One time with Mandiva 2007
 
 The setup was not really the same.
 
 I'll try to give the full second setup and information about the first.
 

The first problem is to build the X driver, I did this in the X11R6
source tree, it's the easiest way, my host.def is here:
http://www.linuxowl.com/ffs/scripts/sources/blfs/X11R6.9.0/xc/config/cf/

The second problem is to configure X, my xorg.conf is here:
http://www.linuxowl.com/ffs/scripts/etc/X11/

There is still some work after this changing the settings to you set up,
but it works on both AMD64 and i686 machines.

Duncan


-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] shoppingkart

2007-01-28 Thread Marc-Antón Kehr
Hi,


 It's now fixed, in svn on both branches. At least, I hope it is.
It seems to work, no problems so far, thanks.

Ciao

Marc-Anton

-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] PVR-350

2007-01-28 Thread Pascal Schirrmann
Pascal Schirrmann a écrit :
 Paul Sijben a écrit :
   
 Pascal,

 could you share your X config file with us (and other configs that 
 might be of relevance)?

 There are multiple people interested in this setup.

 Paul Sijben

 
 Yes, sure, I'll do that tomorrow.

   
Hi,

A little longer than expected...

You should find the information here :
http://freevo.schirrms.net/pvr350.html

I hope that this can be useful. I put that on my home server, but this 
can be put in the wiki if you mind (and if you know how to do that).

Thanks,

-- 
Pascal Schirrmann


-
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.phpp=sourceforgeCID=DEVDEV
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users