Geoff Kendal
2017-03-12 19:34:21 UTC
Iâm trying to achieve the same thing that can be seen in this stream: http://5.35.250.101:8000/radio700-mpx.flac <http://5.35.250.101:8000/radio700-mpx.flac> (Carries MPX basically)
Basically, taking an input source, running it via stereo tool (named pipes in and out), then streaming via FLAC. Iâve got everything in place, but itâs not working - Not suite sure whatâs going wrong and have spent many days trying different things!!!
My current bit Iâm trying to try, is ensuring that the audio I pass to StereoTool is at 192000kHz. I suspect it may be at 44kHz currently as Iâm doing the followingâŠ
src = mksafe(input.http("http://localhost:8000/mp3_stream_320â))
output.file(%wav(stereo=true, channels=2, samplesize=16, header=false),"/tmp/audioin.pcm", src)
My src is a 320/44 MP3.
Is there a way to ensure that the PCM audio Iâm writing to the named pipe (mkifio) /tmp/audioin.pcm is at 192000kHz?
Thanks :)
Basically, taking an input source, running it via stereo tool (named pipes in and out), then streaming via FLAC. Iâve got everything in place, but itâs not working - Not suite sure whatâs going wrong and have spent many days trying different things!!!
My current bit Iâm trying to try, is ensuring that the audio I pass to StereoTool is at 192000kHz. I suspect it may be at 44kHz currently as Iâm doing the followingâŠ
src = mksafe(input.http("http://localhost:8000/mp3_stream_320â))
output.file(%wav(stereo=true, channels=2, samplesize=16, header=false),"/tmp/audioin.pcm", src)
My src is a 320/44 MP3.
Is there a way to ensure that the PCM audio Iâm writing to the named pipe (mkifio) /tmp/audioin.pcm is at 192000kHz?
Thanks :)