Skip to content

Commit

Permalink
Add some config files
Browse files Browse the repository at this point in the history
  • Loading branch information
kirushyk committed Oct 30, 2016
1 parent 0745ecf commit 3fb512c
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 0 deletions.
2 changes: 2 additions & 0 deletions etc/kurento/modules/kurento/BaseRtpEndpoint.conf.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
;minPort=50000
;maxPort=55000
9 changes: 9 additions & 0 deletions etc/kurento/modules/kurento/HttpEndpoint.conf.ini
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
2 changes: 2 additions & 0 deletions etc/kurento/modules/kurento/MediaElement.conf.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
;outputBitrate=1500000

32 changes: 32 additions & 0 deletions etc/kurento/modules/kurento/SdpEndpoint.conf.json
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"
}
]
}
2 changes: 2 additions & 0 deletions etc/kurento/modules/kurento/UriEndpoint.conf.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
defaultPath = file:///var/kurento/

16 changes: 16 additions & 0 deletions etc/kurento/modules/kurento/WebRtcEndpoint.conf.ini
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>

0 comments on commit 3fb512c

Please sign in to comment.