That works - though on the server I was testing this on, left and right
were flipped.  Thanks, Romain!

The only remaining issue is when I then stream the resulting mono I get
disconnects every 30 seconds or so.  The input (stereo) stream is solid so
it's not a network issue.  Only happens on the mono stream being sent to an
Icecast server.



On Tue, Nov 26, 2013 at 8:19 PM, Romain Beauxis <[email protected]>wrote:

> Hi,
>
> I think you should be able to do this by combining stereo.pan and mean
> this way:
>
> # Extract the left channel of a stereo source
> # @category Source / Conversions
> # @param s Source to extract from
> def stereo.left(s)
>   mean(stereo.pan(pan=-1., s))
> end
>
> # Extract the right channel of a stereo source
> # @category Source / Conversions
> # @param s Source to extract from
> def stereo.right(s)
>   mean(stereo.pan(pan=1., s))
> end
>
> I have just added those two operators into utils.liq..
>
> Romain
>
>
> 2013/11/26 Dave Pascoe <[email protected]>
>
>>  I could have sworn I did this once, but now I can't find my recipe and
>> I'm having trouble recreating it.
>>
>> Given a stereo source, how can you split it into two mono sources?  In
>> this case the source is a stream and the output will be two mono streams.
>>
>> So basically I need to get access to the left and right sides of a stereo
>> stream.
>>
>> TIA,
>> Dave
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Rapidly troubleshoot problems before they affect your business. Most IT
>> organizations don't have a clear picture of how application performance
>> affects their revenue. With AppDynamics, you get 100% visibility into your
>> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics
>> Pro!
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Savonet-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/savonet-users
>>
>>
>
>
> ------------------------------------------------------------------------------
> Rapidly troubleshoot problems before they affect your business. Most IT
> organizations don't have a clear picture of how application performance
> affects their revenue. With AppDynamics, you get 100% visibility into your
> Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics
> Pro!
> http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
> _______________________________________________
> Savonet-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/savonet-users
>
>
------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to