Hello, Thank you all for your responses. I think it is possible to use pjsip/pjsau to stream a VoIP conversation as an mp3 stream without to much work. Unfortunately I am not a C programmer. I will look for someone who can help me to write the correct extension to pjsip/pjsua. Chhers, Jan. On Feb 19, 2008 7:15 PM, <buldozer at aufbix.org> wrote: > Regarding MP3 recording ... what I do, is to re-add the code to pjsua-lib, > which was there until mp3 writer was moved to the third-party folder. > Just find > > > if (file_format == FMT_WAV) { > status = pjmedia_wav_writer_port_create(pool, path, > > pjsua_var.media_cfg.clock_rate, > > pjsua_var.mconf_cfg.channel_count, > > pjsua_var.mconf_cfg.samples_per_frame, > > pjsua_var.mconf_cfg.bits_per_sample, > options, 0, &port); > > in pjsua_media.c and add the following lines right after > > } else if (file_format == FMT_MP3) { > status = pjmedia_mp3_writer_port_create(pjsua_var.pool, path, > > pjsua_var.media_cfg.clock_rate, > > pjsua_var.mconf_cfg.channel_count, > > pjsua_var.mconf_cfg.samples_per_frame, > > pjsua_var.mconf_cfg.bits_per_sample, > enc_param, &port); > > ... and include mp3_writer.c and mp3_port.h to pjsua-lib project. This > works > for any pjsua-lib based applications. > > > Greets, Toni > > ---------------------------------------------------------------- > This message was sent using IMP, the Internet Messaging Program. > > > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip at lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/attachments/20080219/9c439fd9/attachment.html