Re: [Freevo-users] Streaming Internet Radio

2003-06-25 Thread Aubin Paul
It just looks like a song with an album cover :)

On Wed, Jun 25, 2003 at 01:58:53PM -0700, skeeterskip wrote:
> Can we see a image snapshot?
> 
> --- Paul Hampton <[EMAIL PROTECTED]> wrote:
> > Hi Tommy
> > 
> > I wrote and submitted the internet streaming part on
> > 7th May and I'm 
> > pretty sure its only in the cvs version and not in
> > pre4 which came out 
> > on 24th April.
> > 
> > So you can either use the cvs version or here are
> > the modifications I 
> > submitted at the time (Aubin cleaned them up for the
> > cvs so this is more 
> > a 'rougher' version but it works quickly if you want
> > to use it - it is 
> > just things like the labels are incorrect on the
> > screen like it says 
> > 'album'):
> > 
> > Go to src/audio
> > 
> > Add these two bits to audioitem.py (should be pretty
> > obvious where to 
> > put them):
> > 
> >if re.match('.*[fF][xX][dD]$',
> > self.filename):
> >if DEBUG > 1: print "Got fxd..."
> >self.set_info_radio(self.filename)
> > 
> > AND
> > 
> >def set_info_radio(self, filename):
> >"""
> >Sets the info variables with info from the
> > mp3
> > 
> >Arguments: filename
> >  Returns: 1 if success
> >"""
> >import xmllib
> >import xml
> >from xml.parsers import expat
> >sourcexml = open(filename, 'r')
> >xmlpp = sourcexml.read()
> > 
> >def s_el(name, attrs):
> >global glob_name
> >glob_name = name
> >def e_el(name):
> >print "   (attribute", name, "ends)"
> >def c_data(data):
> >global glob_name
> >global glob_val
> >global glob_url
> >print glob_name, data
> >if data:
> >if glob_name == 'title':
> >self.title = data
> >glob_name = 0
> >if glob_name == 'genre':
> >self.album = data
> >glob_name = 0
> >if glob_name == 'desc':
> >self.artist = data
> >glob_name = 0
> >if glob_name == 'url':
> >self.year = data
> >print "URL:", self.year
> >glob_name = 0
> >prs = xml.parsers.expat.ParserCreate()
> >prs.StartElementHandler = s_el
> >prs.EndElementHandler = e_el
> >prs.CharacterDataHandler = c_data
> >prs.returns_unicode = 0
> >prs.Parse(xmlpp)
> >return 1
> > 
> > and edit this part of the audio/mplayer.py
> > 
> >def play(self, item):
> >"""
> >play a audioitem with mplayer
> >"""
> >if item.year:
> >filename = item.year
> >else:
> >filename = item.filename
> > 
> > You will also need to edit the freevo_config to
> > recognise fxd files in 
> > the audio bit. Sorry its so messy, I have never
> > programmed python before.
> > 
> > Here is an example fxd file:
> > 
> > 
> > 
> >Ministry of Sound Radio
> >
> >  
> >   
> >
> http://www.ministryofsound.com/asx/radio/mosradio.asx
> >
> >
> >  Dance
> >  All the Biggest Names in Dance - Fatboy
> > Slim, Sasha, Jazzy M, 
> > Paul Van Dyk, DJ Wicksta, Peri Rollah, Ferry Corsten
> > and many more live 
> > on MoS Radio.
> >
> > 
> > 
> > If you need a hand adding this stuff then mail me or
> > icq 4545353.
> > 
> > Regards,
> > Paul
> > 
> > PS. as you probably noticed, the 'logo' part is
> > unessecary in the .fxd 
> > files, I just left that there when I was testing. If
> > you call the image 
> > the same name as the .fxd then it works (as I see
> > you have done).
> > 
> > 
> > Tommy Killander wrote:
> > 
> > >Hi,
> > >
> > >I'm having trouble getting Internet Radio to work.
> > Sorry to bother you guys
> > >but and I think I need some pointers in the right
> > direction :)
> > >
> > >Freevo shows the Internet Radio directory in the
> > Audio menu, but it says
> > >that "The directory is empty" when I enter it. I
> > use freevo-1.3.2-pre4 on
> > >top of RH8.0
> > >
> > >I have created a directory where I want to put my
> > server URLs called
> > >"/mnt/iradio".
> > >
> > >[EMAIL PROTECTED] iradio]# pwd
> > >/mnt/iradio
> > >[EMAIL PROTECTED] iradio]# ls -la
> > >total 52
> > >drwxr-xr-x2 root root 4096 Jun 24
> > 13:42 .
> > >drwxr-xr-x7 root root 4096 Jun 24
> > 12:04 ..
> > >-rw-r--r--1 root root  404 Jun 24
> > 13:42 Classic Techno.fxd
> > >-rwxr-xr-x1 root root10945 Jun 24
> > 12:14 Classic Techno.png
> > >-rw-r--r--1 root root  382 Jun 24
> > 12:28 Groove Salad.fxd
> > >-rwxr-xr-x1 root root24053 Jun 24
> > 13:23 Groove Salad.png
> > >[EMAIL PROTECTED] iradio]#
> > >
> > >My local_conf.py contains:
> > >
> > >DIR_AUDIO = [ ('My Audio Files',
> > '/mnt/common/Music'),
> > >  

Re: [Freevo-users] Does anyone use the dxr3 or hollywood plus?

2003-06-25 Thread Stefan Strandberg
well, it has only come up on a few episodes of The Tick and some other 
cartoons that I have...I haven't tried any real divx movies, since I buy 
everything I want on DVD anyways...not for moral reasons, but I hate not 
having 5.1 sound.

I will probably stick that CPU in tonight and hope my motherboard 
supports it...if it works, I'll let you know how well the stuff that 
wasnt working well works with the new CPU.

The preceding sentence was brought to you by the letter "w".

-stefan

Mark Casey wrote:
Very clever.

Some divx's don't play well?  Surely encoding it as a mpeg stream in
realtime would take up most of the cpu time, even on a p3 800?
Gotta hand it to whoever thought of encoding it as a mpeg stream then
sending it to the card, very ingenuis.
Thanks for the info

Mark

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stefan
Strandberg
Sent: 25 June 2003 22:04
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] Does anyone use the dxr3 or hollywood plus?
I am using one in my setup right now.  It displays teh menus and 
everything through the dxr3 (in my case, Hollywood RealMagic+).
It is nice, because it fills up the entire TV screen as supposed to 
leaving black bars which I got with my TNT2 Ultra...
The drawback to it is that everything must be converted to mpg to go out 
to the card, so some stuff doesn't play well on slower CPUs...I have a 
celery 500 at the moment, and TV was impossible, and some divxs don't 
play well.  I have a pentium 3 800 that I haven't gotten around to 
putting into the machine yet that will hopefully solve the issues.

The other problem is you lose keyboard input while mplayer is 
running...you need to get a remote control, which is kinda a pain.  I 
don't think there is any way to code around that at all.  All you can do 
with the keyboard is hit Ctrl-C to stop the movie, but it also kills 
freevo, so in my case I need to blindly hit up, enter to restart it. 
You could probably get around it by having a bash script that would 
restart freevo whenever it sensed that it died...You still won't be able 
to pause/fast forward/anything though...

-stefan

Mark Casey wrote:

I've had this hollywood plus decoder card for ages and on the Freevo site
it

mentions you can use one for tv output.
Does that mean it can display the freevo ui etc or does it just display
decoded mpeg's etc.
Kinda curious since it would be nice to use that for tv output instead of
buying a graphics card capable of tv output.
I have a spare voodoo 3 sitting around but that's vga out only.
By my knowledge doesn't it display only the decoded mpeg video only?
I wouldn't know since I've never used it with a tv, just ordered a s-video
to scart connector for my tv though.  :)
Thanks

Mark



---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


--
Stefan Strandberg
University of Wisconsin - Madison
Computer Systems Lab
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Does anyone use the dxr3 or hollywood plus?

2003-06-25 Thread Mark Casey
Very clever.

Some divx's don't play well?  Surely encoding it as a mpeg stream in
realtime would take up most of the cpu time, even on a p3 800?
Gotta hand it to whoever thought of encoding it as a mpeg stream then
sending it to the card, very ingenuis.

Thanks for the info

Mark

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stefan
Strandberg
Sent: 25 June 2003 22:04
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] Does anyone use the dxr3 or hollywood plus?


I am using one in my setup right now.  It displays teh menus and 
everything through the dxr3 (in my case, Hollywood RealMagic+).
It is nice, because it fills up the entire TV screen as supposed to 
leaving black bars which I got with my TNT2 Ultra...
The drawback to it is that everything must be converted to mpg to go out 
to the card, so some stuff doesn't play well on slower CPUs...I have a 
celery 500 at the moment, and TV was impossible, and some divxs don't 
play well.  I have a pentium 3 800 that I haven't gotten around to 
putting into the machine yet that will hopefully solve the issues.

The other problem is you lose keyboard input while mplayer is 
running...you need to get a remote control, which is kinda a pain.  I 
don't think there is any way to code around that at all.  All you can do 
with the keyboard is hit Ctrl-C to stop the movie, but it also kills 
freevo, so in my case I need to blindly hit up, enter to restart it. 
You could probably get around it by having a bash script that would 
restart freevo whenever it sensed that it died...You still won't be able 
to pause/fast forward/anything though...

-stefan


Mark Casey wrote:
> I've had this hollywood plus decoder card for ages and on the Freevo site
it
> mentions you can use one for tv output.
> Does that mean it can display the freevo ui etc or does it just display
> decoded mpeg's etc.
> Kinda curious since it would be nice to use that for tv output instead of
> buying a graphics card capable of tv output.
> I have a spare voodoo 3 sitting around but that's vga out only.
> By my knowledge doesn't it display only the decoded mpeg video only?
> 
> I wouldn't know since I've never used it with a tv, just ordered a s-video
> to scart connector for my tv though.  :)
> 
> Thanks
> 
> Mark
> 
> 
> 
> 
> ---
> This SF.Net email is sponsored by: INetU
> Attention Web Developers & Consultants: Become An INetU Hosting Partner.
> Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
> INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
> ___
> Freevo-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/freevo-users

-- 
Stefan Strandberg
University of Wisconsin - Madison
Computer Systems Lab
[EMAIL PROTECTED]



---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users






---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Re: Documentation (again)

2003-06-25 Thread Tommy Killander


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Eduardo
> Roldan
> Sent: den 25 juni 2003 19:02
> To: [EMAIL PROTECTED]
> Subject: Re: [Freevo-users] Re: Documentation (again)
>
>
> I like the wiki and the idea of a real document.
>
> See the php manual at: http://www.php.net/manual/en/
> I think that freevo needs that type of 'knowledge base'. Standard
> documentation updated not so regularly with the posibility that users
> add coments in any place. When the comments grow up the documentation
> editor push them to the standard documentation and deletes the outdated
> ones. In this way developers can dump his ideas, users his experiences &
> frustrations.
>

I agree.

In order to make the information both valid and possible to find I believe
that a well structured Wiki should be possible to use for user comments,
hints and experiences.
I also believe that a snapshot of the Wiki user documentation should be
moderated and packaged together with each stable release (as a bundle of
HTML-docs or PDF).

Documentation should be labeled and released using the same baselines as the
binary releases. The documentation for freevo-1.3.2-pre5 should be valid for
that release - not containing outdated stuff from freevo-1.3.1 or untested
stuff targeted for freevo-1.3.3-pre1 :-)



In general I see the need for three types of documentation, targetet to
different types of individuals.

 - Users Guide (end-user documentation). How Freevo operates from the users
point of view (could be a HTML, PDF or why not an embedded documentation
system in Freevo itself!?).

 - Installation Guide. Something like a HOWTO. What do I need, how do I get
this bugger up and running. FAQs, Hardware/Software compatibility guide.
Some basic info on the system architecture and minor customisations of
Freevo. All definitions in "freevo_config.py" should be documented here!

 - Design Documentation. Code Style Guide, Software structure, API
documentation. TODO lists. There shouldn't be millions of pages of
documentation - but there should be enough to make sure that developers and
contributors are aligned in terms som code style, use of objects and APIs.
Properly designed code is easier to integrate in the existing software and
contains less bugs...
I think that the documentation found at http://www.directfb.org/ is good.
Look at the Overview document
http://www.directfb.org/documentation/DirectFB_overview_V0.1.pdf for an
example of high level documentation to give newcomers an introduction on how
the pieces fits together.


/Tommy

> I'am alone?
>
>
> On Tue, 2003-06-24 at 12:18, Dirk Meyer wrote:
> > Shawn Powers wrote:
> > > Hey, [EMAIL PROTECTED] remember when you typed:
> > >> That is our biggest problem. We like to code. We add something,
> > >> announce it to the list. Some stuff big enough finds it's way to the
> > >> WiKi. But we are missing some _real_ documentation, with all features
> > >
> > > In a large "foot in the mouth" venture, I now see the virtue
> of the wiki.
> > > :)  I have never liked wikis, but darn it -- it sure is good in this
> > > situation.  Here are my current thoughts:
> > >
> > > I have started reading some python books.  Realize my mind
> often doesn't
> > > work like a programmer, but I want to be able to read some code and
> > > follow what's happening.  I had no idea what *happened* when
> freevo ran.
> > > I've been looking in the code and trying to figure stuff out.  (I've
> > > added a few minimal things to the wiki, and will continue to
> add more as
> > > I figure stuff out)
> >
> > That's great. But even with the WiKi online, I still want structured
> > documentation, online and offline. The 'Freevo Installation HOWTO'
> > from Joseph C. Stump is a very good start, I will add it to the next
> > release (the CVS only contains the sgml file)
> >
> > I also would like to have a plugin document: what plugins exists in
> > Freevo and how to use them. And a plugin HOWTO for developer how to
> > write a plugin. The first needs some Framework and evey plugin
> > developer could add some small description, the later needs to be
> > written by a developer.
> >
> > > To be honest, I don't *want* you guys to document stuff.  Code, code,
> > > code, code!!!  I am trying to learn enough to understand what is
> > > happening.  I'm going to try to look at some more freevo code, and
> > > document the particularly thin parts.  What needs
> documentation the most
> > > right now?
> >
> > Very basic stuff. Mostly the new stuff from CVS. How do plugins work?
> > What is the new event system and how to change it? What keys are
> > there? All about fxd files, etc.
> >
> > > (Oh, and please keep commenting code when possible, especially if
> > > I'll be perusing it to try wikiing out some documentation)
> >
> > Sure. I hate it when there is a bug and I don't know what this
> > function does. So basic doc inside the code is necessary.
> >
> >
> > Dischi
>
>
>
> --

Re: [Freevo-users] Streaming Internet Radio

2003-06-25 Thread skeeterskip
Can we see a image snapshot?

--- Paul Hampton <[EMAIL PROTECTED]> wrote:
> Hi Tommy
> 
> I wrote and submitted the internet streaming part on
> 7th May and I'm 
> pretty sure its only in the cvs version and not in
> pre4 which came out 
> on 24th April.
> 
> So you can either use the cvs version or here are
> the modifications I 
> submitted at the time (Aubin cleaned them up for the
> cvs so this is more 
> a 'rougher' version but it works quickly if you want
> to use it - it is 
> just things like the labels are incorrect on the
> screen like it says 
> 'album'):
> 
> Go to src/audio
> 
> Add these two bits to audioitem.py (should be pretty
> obvious where to 
> put them):
> 
>if re.match('.*[fF][xX][dD]$',
> self.filename):
>if DEBUG > 1: print "Got fxd..."
>self.set_info_radio(self.filename)
> 
> AND
> 
>def set_info_radio(self, filename):
>"""
>Sets the info variables with info from the
> mp3
> 
>Arguments: filename
>  Returns: 1 if success
>"""
>import xmllib
>import xml
>from xml.parsers import expat
>sourcexml = open(filename, 'r')
>xmlpp = sourcexml.read()
> 
>def s_el(name, attrs):
>global glob_name
>glob_name = name
>def e_el(name):
>print "   (attribute", name, "ends)"
>def c_data(data):
>global glob_name
>global glob_val
>global glob_url
>print glob_name, data
>if data:
>if glob_name == 'title':
>self.title = data
>glob_name = 0
>if glob_name == 'genre':
>self.album = data
>glob_name = 0
>if glob_name == 'desc':
>self.artist = data
>glob_name = 0
>if glob_name == 'url':
>self.year = data
>print "URL:", self.year
>glob_name = 0
>prs = xml.parsers.expat.ParserCreate()
>prs.StartElementHandler = s_el
>prs.EndElementHandler = e_el
>prs.CharacterDataHandler = c_data
>prs.returns_unicode = 0
>prs.Parse(xmlpp)
>return 1
> 
> and edit this part of the audio/mplayer.py
> 
>def play(self, item):
>"""
>play a audioitem with mplayer
>"""
>if item.year:
>filename = item.year
>else:
>filename = item.filename
> 
> You will also need to edit the freevo_config to
> recognise fxd files in 
> the audio bit. Sorry its so messy, I have never
> programmed python before.
> 
> Here is an example fxd file:
> 
> 
> 
>Ministry of Sound Radio
>
>  
>   
>
http://www.ministryofsound.com/asx/radio/mosradio.asx
>
>
>  Dance
>  All the Biggest Names in Dance - Fatboy
> Slim, Sasha, Jazzy M, 
> Paul Van Dyk, DJ Wicksta, Peri Rollah, Ferry Corsten
> and many more live 
> on MoS Radio.
>
> 
> 
> If you need a hand adding this stuff then mail me or
> icq 4545353.
> 
> Regards,
> Paul
> 
> PS. as you probably noticed, the 'logo' part is
> unessecary in the .fxd 
> files, I just left that there when I was testing. If
> you call the image 
> the same name as the .fxd then it works (as I see
> you have done).
> 
> 
> Tommy Killander wrote:
> 
> >Hi,
> >
> >I'm having trouble getting Internet Radio to work.
> Sorry to bother you guys
> >but and I think I need some pointers in the right
> direction :)
> >
> >Freevo shows the Internet Radio directory in the
> Audio menu, but it says
> >that "The directory is empty" when I enter it. I
> use freevo-1.3.2-pre4 on
> >top of RH8.0
> >
> >I have created a directory where I want to put my
> server URLs called
> >"/mnt/iradio".
> >
> >[EMAIL PROTECTED] iradio]# pwd
> >/mnt/iradio
> >[EMAIL PROTECTED] iradio]# ls -la
> >total 52
> >drwxr-xr-x2 root root 4096 Jun 24
> 13:42 .
> >drwxr-xr-x7 root root 4096 Jun 24
> 12:04 ..
> >-rw-r--r--1 root root  404 Jun 24
> 13:42 Classic Techno.fxd
> >-rwxr-xr-x1 root root10945 Jun 24
> 12:14 Classic Techno.png
> >-rw-r--r--1 root root  382 Jun 24
> 12:28 Groove Salad.fxd
> >-rwxr-xr-x1 root root24053 Jun 24
> 13:23 Groove Salad.png
> >[EMAIL PROTECTED] iradio]#
> >
> >My local_conf.py contains:
> >
> >DIR_AUDIO = [ ('My Audio Files',
> '/mnt/common/Music'),
> >  ('Internet Radio', '/mnt/iradio') ]
> >
> >One of my .fxd files look like:
> >
> >[EMAIL PROTECTED] iradio]# cat Classic\ Techno.fxd
> >
> >
> >Classic Techno
> >
> >
> >
> >http://205.188.234.65:8020
> >
> >
> >Techno
> >D I G I T A L L Y - I M P O R T E D -
> Classic Techno &
> >Trance - old school techno, trance & rave!
> >
> >
> >
> >
> >/Tommy Killander
> >
> >  
> >
> >>-Original Message-

Re: [Freevo-users] Does anyone use the dxr3 or hollywood plus?

2003-06-25 Thread Stefan Strandberg
I am using one in my setup right now.  It displays teh menus and 
everything through the dxr3 (in my case, Hollywood RealMagic+).
It is nice, because it fills up the entire TV screen as supposed to 
leaving black bars which I got with my TNT2 Ultra...
The drawback to it is that everything must be converted to mpg to go out 
to the card, so some stuff doesn't play well on slower CPUs...I have a 
celery 500 at the moment, and TV was impossible, and some divxs don't 
play well.  I have a pentium 3 800 that I haven't gotten around to 
putting into the machine yet that will hopefully solve the issues.

The other problem is you lose keyboard input while mplayer is 
running...you need to get a remote control, which is kinda a pain.  I 
don't think there is any way to code around that at all.  All you can do 
with the keyboard is hit Ctrl-C to stop the movie, but it also kills 
freevo, so in my case I need to blindly hit up, enter to restart it. 
You could probably get around it by having a bash script that would 
restart freevo whenever it sensed that it died...You still won't be able 
to pause/fast forward/anything though...

-stefan

Mark Casey wrote:
I've had this hollywood plus decoder card for ages and on the Freevo site it
mentions you can use one for tv output.
Does that mean it can display the freevo ui etc or does it just display
decoded mpeg's etc.
Kinda curious since it would be nice to use that for tv output instead of
buying a graphics card capable of tv output.
I have a spare voodoo 3 sitting around but that's vga out only.
By my knowledge doesn't it display only the decoded mpeg video only?
I wouldn't know since I've never used it with a tv, just ordered a s-video
to scart connector for my tv though.  :)
Thanks

Mark



---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users
--
Stefan Strandberg
University of Wisconsin - Madison
Computer Systems Lab
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Does anyone use the dxr3 or hollywood plus?

2003-06-25 Thread Mark Casey
I've had this hollywood plus decoder card for ages and on the Freevo site it
mentions you can use one for tv output.
Does that mean it can display the freevo ui etc or does it just display
decoded mpeg's etc.
Kinda curious since it would be nice to use that for tv output instead of
buying a graphics card capable of tv output.
I have a spare voodoo 3 sitting around but that's vga out only.
By my knowledge doesn't it display only the decoded mpeg video only?

I wouldn't know since I've never used it with a tv, just ordered a s-video
to scart connector for my tv though.  :)

Thanks

Mark




---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


RE: [Freevo-users] Streaming Internet Radio

2003-06-25 Thread Tommy Killander
Hi Paul(s),

Following Mr Hamptons instructions worked just fine. Just got streaming
Internet Radio up and running, after a minor struggle with Python. Lessons
learned for today is that Python is pretty unforgiving about sloppy
indentation... :)

Many thanks for your help.

Best Regards,
/Tommy Killander

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Paul
> Hampton
> Sent: den 24 juni 2003 15:23
> To: [EMAIL PROTECTED]
> Subject: Re: [Freevo-users] Streaming Internet Radio
>
>
> Opps yep sorry forgot about that idea :)
>
> If you need a hand with that Tommy, feel free to send me a mail.
>
> Cheers
> Paul
>
> Aubin Paul wrote:
>
> >If you're comfortable with using cvsweb, you could also generate a
> >diff if you look at the files mentioned below.
> >
> >
>
>
>
>
> ---
> This SF.Net email is sponsored by: INetU
> Attention Web Developers & Consultants: Become An INetU Hosting Partner.
> Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
> INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
> ___
> Freevo-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>



---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Re: Documentation (again)

2003-06-25 Thread Eduardo Roldan
I like the wiki and the idea of a real document.

See the php manual at: http://www.php.net/manual/en/
I think that freevo needs that type of 'knowledge base'. Standard
documentation updated not so regularly with the posibility that users
add coments in any place. When the comments grow up the documentation
editor push them to the standard documentation and deletes the outdated
ones. In this way developers can dump his ideas, users his experiences &
frustrations.

I'am alone?


On Tue, 2003-06-24 at 12:18, Dirk Meyer wrote:
> Shawn Powers wrote:
> > Hey, [EMAIL PROTECTED] remember when you typed:
> >> That is our biggest problem. We like to code. We add something,
> >> announce it to the list. Some stuff big enough finds it's way to the
> >> WiKi. But we are missing some _real_ documentation, with all features
> >
> > In a large "foot in the mouth" venture, I now see the virtue of the wiki. 
> > :)  I have never liked wikis, but darn it -- it sure is good in this 
> > situation.  Here are my current thoughts:
> >
> > I have started reading some python books.  Realize my mind often doesn't 
> > work like a programmer, but I want to be able to read some code and 
> > follow what's happening.  I had no idea what *happened* when freevo ran.  
> > I've been looking in the code and trying to figure stuff out.  (I've 
> > added a few minimal things to the wiki, and will continue to add more as 
> > I figure stuff out)
> 
> That's great. But even with the WiKi online, I still want structured
> documentation, online and offline. The 'Freevo Installation HOWTO'
> from Joseph C. Stump is a very good start, I will add it to the next
> release (the CVS only contains the sgml file)
> 
> I also would like to have a plugin document: what plugins exists in
> Freevo and how to use them. And a plugin HOWTO for developer how to
> write a plugin. The first needs some Framework and evey plugin
> developer could add some small description, the later needs to be
> written by a developer.
> 
> > To be honest, I don't *want* you guys to document stuff.  Code, code, 
> > code, code!!!  I am trying to learn enough to understand what is 
> > happening.  I'm going to try to look at some more freevo code, and 
> > document the particularly thin parts.  What needs documentation the most 
> > right now?
> 
> Very basic stuff. Mostly the new stuff from CVS. How do plugins work?
> What is the new event system and how to change it? What keys are
> there? All about fxd files, etc.
> 
> > (Oh, and please keep commenting code when possible, especially if
> > I'll be perusing it to try wikiing out some documentation)
> 
> Sure. I hate it when there is a bug and I don't know what this
> function does. So basic doc inside the code is necessary.
> 
> 
> Dischi



---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] "Flash" file on freevo

2003-06-25 Thread Laurent
Hi,

Ok i find what is it this file :-\

A schedule a program "Flash 2" by web and the record_serveur record
the film in /usr/local/freevo or my rec dir is not here.

The file isn't "Flash 2" but only Flash. And a nother problem is
that record_server don't stop the recording. So it crashed my / :(

If someone can find the probleme with the webserver. If i record
by freevo tv-guide it's work great.

Laurent
Ps: using last cvs (23-06-2003)

On Wed, Jun 25, 2003 at 02:00:13PM +0200, [EMAIL PROTECTED] wrote:
> 
> Hi,
> 
> On Wed Jun 25  12:33PM, Laurent wrote:
> > Hi,
> > 
> > Can someone tell me that do this file ?
> > 
> > $ ls -l Flash
> > -rw-rw-rw-1 root staff625086464 2003-06-25 11:57 Flash
> > 
> > 
> > hmm 625Mo  isn't it too big for this file ?
> > 
> > Laurent
> 
> You found this file with freevo? So, i never downloaded a freevo version 
> bigger than roundabout 15MB and there was never a file like yours
> included :)
> 
> What does 
> $ file Flash  
> say? Because of the size i would think, it's some kind of movie,
> possibly you are working on a multi-user machine and one of your buddies 
> put it there?
> If in doubt, just delete it.
> 
> greets, 
> 
>   andreas
> 
> 
>  
> 
>  
> 
> 
> ---
> This SF.Net email is sponsored by: INetU
> Attention Web Developers & Consultants: Become An INetU Hosting Partner.
> Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
> INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
> ___
> Freevo-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/freevo-users
> 


---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] "Flash" file on freevo

2003-06-25 Thread entmoot

Hi,

On Wed Jun 25  12:33PM, Laurent wrote:
> Hi,
> 
> Can someone tell me that do this file ?
> 
> $ ls -l Flash
> -rw-rw-rw-1 root staff625086464 2003-06-25 11:57 Flash
> 
> 
> hmm 625Mo  isn't it too big for this file ?
> 
> Laurent

You found this file with freevo? So, i never downloaded a freevo version 
bigger than roundabout 15MB and there was never a file like yours
included :)

What does 
$ file Flash  
say? Because of the size i would think, it's some kind of movie,
possibly you are working on a multi-user machine and one of your buddies 
put it there?
If in doubt, just delete it.

greets, 

andreas


 

 


---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] "Flash" file on freevo

2003-06-25 Thread Laurent
Hi,

Can someone tell me that do this file ?

$ ls -l Flash
-rw-rw-rw-1 root staff625086464 2003-06-25 11:57 Flash


hmm 625Mo  isn't it too big for this file ?

Laurent


---
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
___
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users