streamtuner-misc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Playing Real Audio streams.


From: Jean-Yves Lefort
Subject: Re: Playing Real Audio streams.
Date: Wed, 18 Aug 2004 15:01:19 +0200

On Tue, 17 Aug 2004 21:50:39 -0500
Christian Dysthe <address@hidden> wrote:

> I have Streamtuner 0.12.5 set to play Real Audio using the command "realplay
> %q". However, I have added BBC World with this URL:
> 
> http://www.bbc.co.uk/worldservice/ram/live_news.ram
> 
> to my preselections. When I click on the preselection for BBC World
> xmms's file open dialog comes up, not RealPlayer 10. I have streamed BBC
> World in RealPlayer using this URL directly, so the problem isn't RealPlayer
> in this case.

Unfortunately realplay is only used by handlers who explicitly request
it (atm basic.ch). The Preselections use the "Listen to a stream"
action. What you can do is code a simple shell wrapper and set it as
the program for "Listen to a stream":

#!/bin/sh

case "$1" in
    *.rm|*.ram|*.ra)
        realplay "$1" ;;
    *)
        xmms "$1" ;;
esac

Regards,
Jean-Yves Lefort

-- 
Jean-Yves Lefort

address@hidden
http://lefort.be.eu.org/

Attachment: pgpquTPkjnptC.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]