* remote sound
@ 2004-04-02 11:10 Andrew Langdon-Davies
2004-04-02 14:22 ` James Miller
2004-04-02 14:28 ` dante
0 siblings, 2 replies; 4+ messages in thread
From: Andrew Langdon-Davies @ 2004-04-02 11:10 UTC (permalink / raw)
To: linux-newbie
Hello all,
The idea is to use an old p100 (there aren't any new ones) as an X
client on which to display videos. The server is a Pentium IV running
Mandrake 9.2. I am gradually getting there and so far can run totem or
mplayer on the server and watch the results on the client. What I cannot
get is sound. Both client and server have working sound. Both have
esound installed. What more should I do to get the sound being produced
on the server to be heard on the client?
TIA,
Andrew
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: remote sound
2004-04-02 11:10 remote sound Andrew Langdon-Davies
@ 2004-04-02 14:22 ` James Miller
2004-04-02 14:28 ` dante
1 sibling, 0 replies; 4+ messages in thread
From: James Miller @ 2004-04-02 14:22 UTC (permalink / raw)
To: linux-newbie
On Fri, 2 Apr 2004, Andrew Langdon-Davies wrote:
> The idea is to use an old p100 (there aren't any new ones) as an X
> client on which to display videos. The server is a Pentium IV running
> Mandrake 9.2. I am gradually getting there and so far can run totem or
> mplayer on the server and watch the results on the client. What I cannot
> get is sound. Both client and server have working sound. Both have
> esound installed. What more should I do to get the sound being produced
> on the server to be heard on the client?
I don't know the answer to this question, but I know where I'd look for
one. I monitor a listserv called k12osn (it's a discussion by mostly
sysadmins about k12ltsp - a Linux terminal server project distro aimed at
running on computers in educational settings). The issue of remote sound
comes up frequently, since the client terminals often need to have thier
own sound. I think they have a Wiki, and maybe the question would be
ansered there. Or else you'd probably find alot on the topic in the
archive. Hope this helps.
James
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: remote sound
2004-04-02 11:10 remote sound Andrew Langdon-Davies
2004-04-02 14:22 ` James Miller
@ 2004-04-02 14:28 ` dante
2004-04-02 17:52 ` Matthew Frederico
1 sibling, 1 reply; 4+ messages in thread
From: dante @ 2004-04-02 14:28 UTC (permalink / raw)
To: Andrew Langdon-Davies; +Cc: linux-newbie
I want to do the same thing. This afternoon I'm going to try to implement
the following idea:
1) on the client box where I plan to listen to the sound (music in my
case), I'm going to listen for incoming tcp/ip connections using nc or
the like and pipe the stream to /dev/dsp locally.
2) on the server box where the sound is to originate, I'm going to replace
/dev/dsp with a local unix socket, open it using nc or the like, establish
a tcp/ip connection to the client box and stream the data.
Does this sound like a stupid idea to anyone?
--Tony
On Fri, 2 Apr 2004, Andrew Langdon-Davies wrote:
> Hello all,
> The idea is to use an old p100 (there aren't any new ones) as an X
> client on which to display videos. The server is a Pentium IV running
> Mandrake 9.2. I am gradually getting there and so far can run totem or
> mplayer on the server and watch the results on the client. What I cannot
> get is sound. Both client and server have working sound. Both have
> esound installed. What more should I do to get the sound being produced
> on the server to be heard on the client?
> TIA,
> Andrew
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
>
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: remote sound
2004-04-02 14:28 ` dante
@ 2004-04-02 17:52 ` Matthew Frederico
0 siblings, 0 replies; 4+ messages in thread
From: Matthew Frederico @ 2004-04-02 17:52 UTC (permalink / raw)
To: dante; +Cc: Andrew Langdon-Davies, linux-newbie
On Fri, 2004-04-02 at 08:28, dante@virtualblueness.net wrote:
> I want to do the same thing. This afternoon I'm going to try to implement
> the following idea:
>
> 1) on the client box where I plan to listen to the sound (music in my
> case), I'm going to listen for incoming tcp/ip connections using nc or
> the like and pipe the stream to /dev/dsp locally.
>
> 2) on the server box where the sound is to originate, I'm going to replace
> /dev/dsp with a local unix socket, open it using nc or the like, establish
> a tcp/ip connection to the client box and stream the data.
>
> Does this sound like a stupid idea to anyone?
Sounds like its going to use a lot of bandwidth to me.
Correct me if I am wrong, but isn't /dev/dsp for raw sound data AFTER
conversion FROM e.g. MP3 OGG WAV etc? So "redirecting" /dev/dsp will
probably lag your network substantially. I think this is a very cool
idea though, and you're probably on the right track.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2004-04-02 17:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-02 11:10 remote sound Andrew Langdon-Davies
2004-04-02 14:22 ` James Miller
2004-04-02 14:28 ` dante
2004-04-02 17:52 ` Matthew Frederico
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox