码迷,mamicode.com
首页 > 其他好文 > 详细

SKYPE4COM 录音

时间:2015-04-13 16:38:46      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:skype   skype4com   

Dictionary<int, string> voiceRecoding = new Dictionary<int, string>();

SKYPE4COMLib.Skype skype = new Skype();

skype.Attach(6, true);

skype.CallStatus += skype_CallStatus;


void skype_CallStatus(Call pCall, TCallStatus Status)
        {
            switch (Status) 
            {
                case TCallStatus.clsRinging:
                    pCall.Answer();
                    string fileName = string.Format("{1}{0}.wav", DateTime.Now.Ticks, pCall.PartnerHandle);
                    string filePath = string.Format("C:\\skyperecoding\\{0}", fileName );
                    pCall.OutputDevice[TCallIoDeviceType.callIoDeviceTypeFile] = filePath;
                    if (voiceRecoding.ContainsKey(pCall.Id)) 
                    {
                        voiceRecoding.Remove(pCall.Id);
                    }
                    voiceRecoding.Add(pCall.Id, fileName);
                    skype.SendMessage(pCall.PartnerHandle, "Start Recording....");
                    break;
                case TCallStatus.clsFinished:
                    skype.SendMessage(pCall.PartnerHandle, "Ending recording...");
                    voiceRecoding.Remove(pCall.Id);
                    break;
            }
        }

SKYPE4COM 录音

标签:skype   skype4com   

原文地址:http://blog.csdn.net/sunzongbao2007/article/details/45028015

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!