(Asterisk Dialplan example)
Line 2: Line 2:
  
 
You can generate static UUIDs here - https://www.uuidgenerator.net
 
You can generate static UUIDs here - https://www.uuidgenerator.net
 +
 +
'''We strongly recommend you to use it in phone conference bridge with autodial to BrandMeister Core'''
  
 
== Asterisk Dialplan example ==  
 
== Asterisk Dialplan example ==  

Revision as of 15:35, 13 October 2021

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

You can generate static UUIDs here - https://www.uuidgenerator.net

We strongly recommend you to use it in phone conference bridge with autodial to BrandMeister Core

Asterisk Dialplan example

  1. exten = 101,1,Verbose("Call to AudioSocket via Channel interface")
  2. same = n,Answer()
  3. same = n,Dial(AudioSocket/server.example.com:9092/40325ec2-5efd-4bd3-805f-53576e581d13)
  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. };

API commands

invokeCommand(context, command)

  • set alias <talker alias>
  • set address <asterisk address, domain names accepted>

setSpecificValue(context, parameter, value), getSpecificValue(context, parameter)

  1. #define VALUE_SOCKET_OUTGOING_SOURCE_ID 1
  2. #define VALUE_SOCKET_OUTGOING_TARGET_ID 2
  3. #define VALUE_SOCKET_INCOMING_MODE 3
  4. #define VALUE_SOCKET_INCOMING_SOURCE_ID 4
  5. #define VALUE_SOCKET_INCOMING_TARGET_ID 5
  6. #define VALUE_SOCKET_HOOK_MODE 6
  7. #define VALUE_SOCKET_CONNECTION_STATE 7
  8.  
  9. #define SOCKET_MODE_PRIVATE 0
  10. #define SOCKET_MODE_GROUP 1
  11.  
  12. #define SOCKET_HOOK_NONE 0
  13. #define SOCKET_HOOK_CALL_BACK 1
  14. #define SOCKET_HOOK_TARGET_ID 2

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

You can generate static UUIDs here - https://www.uuidgenerator.net

Asterisk Dialplan example[edit]

  1. exten = 101,1,Verbose("Call to AudioSocket via Channel interface")
  2. same = n,Answer()
  3. same = n,Dial(AudioSocket/server.example.com:9092/40325ec2-5efd-4bd3-805f-53576e581d13)
  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. };

API commands[edit]

invokeCommand(context, command)[edit]

setSpecificValue(context, parameter, value), getSpecificValue(context, parameter)[edit]

  1. #define VALUE_SOCKET_OUTGOING_SOURCE_ID 1
  2. #define VALUE_SOCKET_OUTGOING_TARGET_ID 2
  3. #define VALUE_SOCKET_INCOMING_MODE 3
  4. #define VALUE_SOCKET_INCOMING_SOURCE_ID 4
  5. #define VALUE_SOCKET_INCOMING_TARGET_ID 5
  6. #define VALUE_SOCKET_HOOK_MODE 6
  7. #define VALUE_SOCKET_CONNECTION_STATE 7
  8.  
  9. #define SOCKET_MODE_PRIVATE 0
  10. #define SOCKET_MODE_GROUP 1
  11.  
  12. #define SOCKET_HOOK_NONE 0
  13. #define SOCKET_HOOK_CALL_BACK 1
  14. #define SOCKET_HOOK_TARGET_ID 2