10 Jan
2017
10 Jan
'17
1:19 p.m.
even with 32bit audio, you have 2 × 32bit × 48000Hz = 3072000 ~= 3Mbit/s but audio stream via Internet should usually be compressed, right? so I think, you need an encoder for mp3/ogg/whatever which gets the audio from chuck and send encoder output to a socket (something like netcat comes to mind). can Chuck output audio on stdout? then you could do something like chuck ... | lame ... | nc ... if not, then please take this as a feature request :-) chuck could also write to a named pipe (behaves mostly like a file), the other end of the pipe should be read by lame etc.