Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-27 Thread Anthony Minessale
If you want to go to that much trouble consider http://www.orecx.com/web/ They snoop the RTP from an entirely different box and record your calls for you. On Wed, Nov 25, 2009 at 7:35 PM, Seven Du dujinf...@gmail.com wrote: Yeah, that's why I had to record to two files(readwrite) and need to

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Matthew Fong
I tried removing the codec file extension from uuid_record and session_record but I'm still unable to record a file in native format for a bridged call. record WORKS!, but uuid_record and session_record do not want to record in native format. do uuid_record and session_record work with native

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Brian West
These two options attach media bugs on to the session. Which doesn't work with native files as far as I know. /b On Nov 25, 2009, at 8:53 AM, Matthew Fong wrote: record WORKS!, but uuid_record and session_record do not want to record in native format. do uuid_record and session_record

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Matthew Fong
so is using session_record with .wav my best option for recording bridged calls? --matt On Wed, Nov 25, 2009 at 7:18 AM, Brian West br...@freeswitch.org wrote: These two options attach media bugs on to the session. Which doesn't work with native files as far as I know. /b On Nov 25,

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Rupa Schomaker
Yes On Wed, Nov 25, 2009 at 9:44 AM, Matthew Fong mattdf...@gmail.com wrote: so is using session_record with .wav my best option for recording bridged calls? --matt On Wed, Nov 25, 2009 at 7:18 AM, Brian West br...@freeswitch.org wrote: These two options attach media bugs on to the

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Seven Du
http://code.google.com/p/mod-recpld/ It's out-dated. I originally wrote it to record raw G.729 codec on passthrough mode. It worked before and then we abandoned that since We felt G729 cannot deliver good sound particularly on a cross-continent network. The code is written when I don't know much

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Anthony Minessale
The processor power saved is negligible between PCMU and raw PCM and not worth the fuss. If you didn't decode the audio first you would not be able to mix the stream to produce a single file. So if we went to the trouble of making native media bugs to be able to do that you could barely use them

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-25 Thread Seven Du
Yeah, that's why I had to record to two files(readwrite) and need to mix together by using sox. Do you only try to using PCMU to save CPU power matt? As Anthony said, the difference can be ignored. And you also need to take extra effort to make sure transcoding will not happen on a conversation.

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-23 Thread Brian West
If you're doing native file you DO NOT put an extension on the file name. /b On Nov 22, 2009, at 5:54 PM, Seven Du wrote: did you try without any .wav or .PCMU? ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org

[Freeswitch-users] Recording with Native File PCMU

2009-11-22 Thread Matthew Fong
I'm trying to conserve processor power by recording in native file format, PCMU in my case. It works great with the following line session:execute(record, /tmp/my_recording...session:getVariable(read_codec)); however it fails to work with session:execute(record_session,

Re: [Freeswitch-users] Recording with Native File PCMU

2009-11-22 Thread Seven Du
did you try without any .wav or .PCMU? 2009/11/23 Matthew Fong mattdf...@gmail.com I'm trying to conserve processor power by recording in native file format, PCMU in my case. It works great with the following line session:execute(record, /tmp/my_recording...session:getVariable(read_codec));