You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nodejs
Is there a way to have an audio play over a websocket?
As an example, I want to make the sound of a bell on one of the many websocket clients.
Is there an easy way to do that? I dont want to have to install any file at the client site.
Thanks,
Ray
J Decker
unread,
Mar 19, 2016, 2:35:12 AM3/19/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nodejs
I would think an http request for a resource would work better? websocket you'd have to encode to a string and decode...
though websocket would be better for sending streams of sounds... so if the server loaded it and passed it to a streaming codec for the client to play? But not sure how you'd play a sound stream on client?