Reputation: 118
I am running a FreeSWITCH server that will function as a call-in radio show. What I want to do is create a platform that will enable the user to edit the show in post-production, which includes creating a custom show/object using the recorded audio.
How I want to do this is record each leg of the call separately, so that way I can record the host separately to the listener calling in. Is this recording action available in FreeSWITCH?
This Question on SO is related: Call Recording in Freeswitch
and one of the answers mentions the
which according to the official wiki "is used for recording messages, like in a voicemail system".
The question is, Am I able to invoke this record action on both legs of the call? Or any equivalents that exist within FreeSWITCH?
Upvotes: 2
Views: 3167
Reputation: 1961
if you set the variable RECORD_STEREO=true
and use a FILENAME.wav
file as recording destination, the resulting file will have two audio channels, for receiving and sending sides respectively. Then later you can split the channels by your favorite audio editing tool and do what is needed.
Upvotes: 5