Replies: 2 comments 3 replies
-
What's the audio quality like with only a single call? |
Beta Was this translation helpful? Give feedback.
0 replies
-
The test triggers only a single call yet.
Aaron Clauson ***@***.***> schrieb am Fr. 7. März 2025 um
14:59:
… What's the audio quality like with only a single call?
—
Reply to this email directly, view it on GitHub
<#1352 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BQHEQ5QBZVFSCRX2FG3RRX32TGQ4ZAVCNFSM6AAAAABYRI2LJOVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTENBSGY4TKNA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
i need a program, that calls a group of phone clients (of a swyx-server) and plays an audio file to them, when connection has been established. For testing i used the "play audio" example. Everything works fine, but the audio sounds very fragmented.
My question is, if i use sipsorcery the right way, or should i try another approach? Thanks in advance for any suggestions.
Here's my code so far:
class Program
{
static async Task Main(string[] args)
{
var wavFile = @"C:\ProgramData....wav";
var dir = Path.GetDirectoryName(wavFile);
var name = Path.GetFileName(wavFile);
var newName = name.Replace(".wav", ".16kHz.wav");
var audioFile = Path.Combine(dir, newName);
if (File.Exists(audioFile) || ConvertWaveFile(wavFile, audioFile))
{
var sipTransport = new SIPTransport();
Beta Was this translation helpful? Give feedback.
All reactions