This repository was archived by the owner on Feb 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,8 +91,8 @@ static void Main()
9191 var builder = WebApplication . CreateBuilder ( ) ;
9292
9393 Log . Logger = new LoggerConfiguration ( )
94- . MinimumLevel . Debug ( )
95- // .MinimumLevel.Verbose()
94+ // .MinimumLevel.Debug()
95+ . MinimumLevel . Verbose ( )
9696 . Enrich . FromLogContext ( )
9797 . WriteTo . Console ( )
9898 . CreateLogger ( ) ;
@@ -176,8 +176,8 @@ private static async Task StartSIPCall(string openAIProjectID)
176176 sipTransport . EnableTraceLogs ( ) ;
177177
178178 var userAgent = new SIPUserAgent ( sipTransport , null ) ;
179- var winAudio = new WindowsAudioEndPoint ( new AudioEncoder ( ) ) ;
180- winAudio . RestrictFormats ( x => x . Codec == AudioCodecsEnum . PCMU ) ;
179+ var winAudio = new WindowsAudioEndPoint ( new AudioEncoder ( includeOpus : true ) ) ;
180+ // winAudio.RestrictFormats(x => x.Codec == AudioCodecsEnum.OPUS); // No joy as of 5 Sep 2025. PCM only.
181181 var voipMediaSession = new VoIPMediaSession ( winAudio . ToMediaEndPoints ( ) ) ;
182182 voipMediaSession . AcceptRtpFromAny = true ;
183183
Original file line number Diff line number Diff line change 1+ {
2+ "profiles" : {
3+ "GetStarted" : {
4+ "commandName" : " Project" ,
5+ "launchBrowser" : true ,
6+ "environmentVariables" : {
7+ "ASPNETCORE_ENVIRONMENT" : " Development"
8+ },
9+ "applicationUrl" : " https://localhost:53742;http://localhost:53744"
10+ }
11+ }
12+ }
You can’t perform that action at this time.
0 commit comments