oggstream 8000/tcp # testing ogg streaming over HTTP
oggstream stream tcp nowait.10 nobody /home/reed/audio/streamogg streamogg
#!/bin/sh echo HTTP/1.0 200 Ok^M # this is carriage return (CTRL-M) echo Server: streamogg-test^M # try using CTRL-V followed by CTRL-M # this shows you can encode WAV on the fly -- it is a little choppy /usr/pkg/bin/oggenc -Q -b 1 -o - /home/reed/audio/kaas.wav 2>/dev/null #or send already made Ogg Vorbis data -- sounds great #cat /home/reed/audio/*ogg
/usr/pkg/bin/ogg123 -v http://localhost:8000(This also works with FreeAmp for Windows -- sometimes it hangs.)
Also, if you use with live audio via microphone and encoding it, please let me know how you did it.