Since version BrandMeister Core 20211013-125527 has support of Asterisk's AudioSockets

Asterisk Dialplan example

  1. exten = 100,1,Verbose("Call to AudioSocket via Dialplan Application")
  2. same = n,Answer()
  3. same = n,AudioSocket(40325ec2-5efd-4bd3-805f-53576e581d13,server.example.com:9092)
  4. same = n,Hangup()

BrandMeister Core configuration example

  1. AudioSocket :
  2. {
  3. port = 9092; // TCP port
  4. channels =
  5. [
  6. "Socket20"
  7. ];
  8. };
  9.  
  10. Socket20 :
  11. {
  12. // AudioSocket ID
  13. number = 20;
  14. // AudioSocket UUID (optional)
  15. identifier = "6c7a28ca-4d20-4db3-9a8a-497594de57a8";
  16. // Codec type:
  17. // AMBEServer - to use with AMBEserver or dvemu (please check https://github.com/dl5di/OpenDV/tree/master/DummyRepeater)
  18. // USB Dongle - to use with DVSI USB-3000/USB-3003/USB-3012, NW ThumbDV/ThumbDV-3 or DV3K Dongle
  19. type = "AMBEServer";
  20. // Location of codec:
  21. // <domain name>[:<port>][,<interval>] - in case of AMBEServer (interval - address refresh interval in seconds, 10 minutes by default)
  22. // <path to TTY device>[;speed=230400] - in case of USB Dongle
  23. location = "localhost:2460";
  24. // Address of Asterisk server
  25. address = "localhost";
  26. // VAD parameters
  27. start = 47; // Level percentage to start
  28. release = 10; // Level percentage to continue
  29. // Outgoing session parameters (optional)
  30. mode = "Group";
  31. source = 1;
  32. destination = 9504;
  33. };

Since version BrandMeister Core 20211013-125527 has support of Asterisk's AudioSockets

Asterisk Dialplan example[edit]

  1. exten = 100,1,Verbose("Call to AudioSocket via Dialplan Application")
  2. same = n,Answer()
  3. same = n,AudioSocket(40325ec2-5efd-4bd3-805f-53576e581d13,server.example.com:9092)
  4. same = n,Hangup()

BrandMeister Core configuration example[edit]

  1. AudioSocket :
  2. {
  3. port = 9092; // TCP port
  4. channels =
  5. [
  6. "Socket20"
  7. ];
  8. };
  9.  
  10. Socket20 :
  11. {
  12. // AudioSocket ID
  13. number = 20;
  14. // AudioSocket UUID (optional)
  15. identifier = "6c7a28ca-4d20-4db3-9a8a-497594de57a8";
  16. // Codec type:
  17. // AMBEServer - to use with AMBEserver or dvemu (please check https://github.com/dl5di/OpenDV/tree/master/DummyRepeater)
  18. // USB Dongle - to use with DVSI USB-3000/USB-3003/USB-3012, NW ThumbDV/ThumbDV-3 or DV3K Dongle
  19. type = "AMBEServer";
  20. // Location of codec:
  21. // <domain name>[:<port>][,<interval>] - in case of AMBEServer (interval - address refresh interval in seconds, 10 minutes by default)
  22. // <path to TTY device>[;speed=230400] - in case of USB Dongle
  23. location = "localhost:2460";
  24. // Address of Asterisk server
  25. address = "localhost";
  26. // VAD parameters
  27. start = 47; // Level percentage to start
  28. release = 10; // Level percentage to continue
  29. // Outgoing session parameters (optional)
  30. mode = "Group";
  31. source = 1;
  32. destination = 9504;
  33. };