-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
;minPort=50000 | ||
;maxPort=55000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
serverAddress=localhost | ||
port=9091 | ||
|
||
; Announced IP Addess may be helpful under situations such as the server needs | ||
; to provide URLs to clients whose host name is different from the one the | ||
; server is listening in. If this option is not provided, http server will try | ||
; to look for any available address in your system. | ||
|
||
; announcedAddress=localhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
;outputBitrate=1500000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"numAudioMedias" : 1, | ||
"numVideoMedias" : 1, | ||
"audioCodecs" : [ | ||
{ | ||
"name" : "opus/48000/2" | ||
// Next is an example about how a codec can be configured. | ||
// WARNING: Usage of properties is not yet supported | ||
// "properties" : { | ||
// "maxcodedaudiobandwidth" : "16000", | ||
// "maxaveragebitrate" : "20000", | ||
// "stereo": "1", | ||
// "useinbandfec" : "1", | ||
// "usedtx" : "0" | ||
// } | ||
}, | ||
{ | ||
"name" : "PCMU/8000" | ||
}, | ||
{ | ||
"name" : "AMR/8000" | ||
} | ||
], | ||
"videoCodecs" : [ | ||
{ | ||
"name" : "VP8/90000" | ||
}, | ||
{ | ||
"name" : "H264/90000" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
defaultPath = file:///var/kurento/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
; Only IP address are supported, not domain names for addresses | ||
; You have to find a valid stun server. You can check if it works | ||
; usin this tool: | ||
; http://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/ | ||
; stunServerAddress=<serverAddress> | ||
; stunServerPort=<serverPort> | ||
|
||
; turnURL gives the necessary info to configure TURN for WebRTC. | ||
; 'address' must be an IP (not a domain). | ||
; 'transport' is optional (UDP by default). | ||
; turnURL=user:password@address:port(?transport=[udp|tcp|tls]) | ||
|
||
;pemCertificate is deprecated. Please use pemCertificateRSA instead | ||
;pemCertificate=<path> | ||
;pemCertificateRSA=<path> | ||
;pemCertificateECDSA=<path> |