简体   繁体   中英

No sound TAPI in Windows 7

I try to write a auto answer machin with TAPI in C#.NET.

I using tapi3_dev sample to work.this sample work in windows XP but in windows 7, everything is normal(no error or exception) but no sound playback just i can record the audio;

please help me.


my code::

case TAPI3Lib.ADDRESS_EVENT.AE_RINGING: this.PlayVoice(CallInfo);

...

 private void PlayVoice(TAPI3Lib.ITCallInfo iTCallInfo)
        {
            try
            {
                //the supported file extensions are .avi and .wav.   http://msdn.microsoft.com/en-us/library/ms730457.aspx
                TAPI3Lib.ITBasicCallControl2 iTBasicCallControl2 = (TAPI3Lib.ITBasicCallControl2)iTCallInfo;
                this.selectedTerminal = iTBasicCallControl2.RequestTerminal(TAPI3Lib.TapiConstants.CLSID_String_FilePlaybackTerminal, TAPI3Lib.TapiConstants.TAPIMEDIATYPE_AUDIO, TAPI3Lib.TERMINAL_DIRECTION.TD_CAPTURE);
                TAPI3Lib.ITMediaPlayback iTMediaPlayback = (TAPI3Lib.ITMediaPlayback)this.selectedTerminal;
                object[] playList = new object[1];
                playList[0] = @"C:\ModemLog\7533f717-6cc5-41d5-9845-6983cff85e4b.avi";
                //playList[0] = @"C:\Users\Abedi\Desktop\Anghezi.wav";
                //playList[0] = @"C:\ProgramData\Venta\VentaFax & Voice 6\Service\greet1.wav";
                iTMediaPlayback.PlayList = playList;
                iTBasicCallControl2.SelectTerminalOnCall(this.selectedTerminal);
                this.iTMediaControl = (TAPI3Lib.ITMediaControl)this.selectedTerminal;
                if (iTCallInfo.CallState == TAPI3Lib.CALL_STATE.CS_OFFERING)
                    iTBasicCallControl2.Answer();
                this.iTMediaControl.Start();
                (selectedTerminal as TAPI3Lib.ITBasicAudioTerminal).Volume = 0;
            }
            catch (Exception exception)
            {
                this.Log(exception.Message, "Exception in PlayVoice");
                this.WriteLine(exception.Message);
                this.buttonDisconnect_Click(null, EventArgs.Empty);
            }
        }

Is your code running in a windows service? There is a known issue with audio control from a windows service under windows 7. Currently, I cannot find a work-around other than launcing a windows application to intergate with tapi.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM