mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser TypeDoc custom theme
parent
e64bca3257
commit
2fb369c72a
|
@ -21,3 +21,4 @@ nbactions.xml
|
||||||
*/.project
|
*/.project
|
||||||
*/.classpath
|
*/.classpath
|
||||||
*/.settings/*
|
*/.settings/*
|
||||||
|
*/.tscache/*
|
||||||
|
|
|
@ -0,0 +1,139 @@
|
||||||
|
module.exports = function(grunt)
|
||||||
|
{
|
||||||
|
grunt.file.setBase('../../../');
|
||||||
|
grunt.initConfig({
|
||||||
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
|
ts: {
|
||||||
|
themeCustom: {
|
||||||
|
options: {
|
||||||
|
sourceMap: false,
|
||||||
|
module: 'amd',
|
||||||
|
basePath: 'themes',
|
||||||
|
declaration: false
|
||||||
|
},
|
||||||
|
src: [
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/lib/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/Application.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/components/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/services/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/utils/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/~bootstrap.ts'
|
||||||
|
],
|
||||||
|
out: 'config/typedoc/custom-theme/assets/js/main.js'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
uglify: {
|
||||||
|
themeCustom: {
|
||||||
|
options: {
|
||||||
|
mangle: false
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
'config/typedoc/custom-theme/bin/default/assets/js/main.js': [
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/jquery-2.1.1.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/underscore-1.6.0.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/backbone-1.1.2.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/lunr.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/main.js'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'string-replace': {
|
||||||
|
themeMinimal: {
|
||||||
|
files: {
|
||||||
|
'config/typedoc/custom-theme/bin/minimal/layouts/default.hbs': ['src/minimal/layouts/default.hbs']
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
replacements: [{
|
||||||
|
pattern: /{{ CSS }}/g,
|
||||||
|
replacement: function() {
|
||||||
|
var css = grunt.file.read('bin/default/assets/css/main.css');
|
||||||
|
return css.replace(/url\(([^\)]*)\)/g, function(match, file) {
|
||||||
|
if (match.indexOf(':') != -1) return match;
|
||||||
|
var path = require('path'), fs = require('fs');
|
||||||
|
var file = path.resolve('bin/default/assets/css', file);
|
||||||
|
var data = fs.readFileSync(file, 'base64');
|
||||||
|
return 'url(data:image/png;base64,' + data + ')';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
pattern: /{{ JS }}/g,
|
||||||
|
replacement: function() {
|
||||||
|
return grunt.file.read('bin/default/assets/js/main.js').replace('{{', '{/**/{');
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sass: {
|
||||||
|
options: {
|
||||||
|
style: 'compact',
|
||||||
|
unixNewlines: true
|
||||||
|
},
|
||||||
|
themeCustom: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'config/typedoc/custom-theme/assets/css',
|
||||||
|
src: 'config/typedoc/custom-theme/**/*.sass',
|
||||||
|
dest: 'config/typedoc/custom-theme/bin/assets/css',
|
||||||
|
ext: '.css'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
autoprefixer: {
|
||||||
|
options: {
|
||||||
|
cascade: false
|
||||||
|
},
|
||||||
|
themeCustom: {
|
||||||
|
expand: true,
|
||||||
|
src: 'config/typedoc/custom-theme/bin/**/*.css',
|
||||||
|
dest: './'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
copy: {
|
||||||
|
plugin: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'src',
|
||||||
|
src: ['*.js'],
|
||||||
|
dest: 'config/typedoc/custom-theme/bin'
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
themeCustom: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'config/typedoc/custom-theme',
|
||||||
|
src: ['**/*.hbs', '**/*.png'],
|
||||||
|
dest: 'config/typedoc/custom-theme/bin'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
js: {
|
||||||
|
files: ['config/typedoc/custom-theme/assets/js/src/**/*.ts'],
|
||||||
|
tasks: ['js']
|
||||||
|
},
|
||||||
|
css: {
|
||||||
|
files: ['config/typedoc/custom-theme/assets/css/**/*'],
|
||||||
|
tasks: ['css']
|
||||||
|
},
|
||||||
|
custom: {
|
||||||
|
files: ['config/typedoc/custom-theme/**/*.hbs'],
|
||||||
|
tasks: ['copy', 'string-replace']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
||||||
|
grunt.loadNpmTasks('grunt-string-replace');
|
||||||
|
grunt.loadNpmTasks('grunt-autoprefixer');
|
||||||
|
grunt.loadNpmTasks('grunt-ts');
|
||||||
|
|
||||||
|
grunt.registerTask('css', ['sass', 'autoprefixer']);
|
||||||
|
grunt.registerTask('js', ['ts:themeCustom', 'uglify']);
|
||||||
|
grunt.registerTask('default', ['copy', 'css', 'js', 'string-replace']);
|
||||||
|
};
|
|
@ -8,6 +8,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{relativeURL "assets/css/main.css"}}">
|
<link rel="stylesheet" href="{{relativeURL "assets/css/main.css"}}">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,9 @@
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
|
|
|
@ -17,7 +17,7 @@ module.exports = {
|
||||||
],
|
],
|
||||||
excludeExternals: true,
|
excludeExternals: true,
|
||||||
excludePrivate: true,
|
excludePrivate: true,
|
||||||
theme: "./config/typedoc/custom-theme",
|
theme: "./config/typedoc/custom-theme/bin",
|
||||||
plugin: [
|
plugin: [
|
||||||
"typedoc-plugin-sourcefile-url",
|
"typedoc-plugin-sourcefile-url",
|
||||||
],
|
],
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -245,15 +248,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -366,15 +369,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -346,15 +349,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -118,7 +121,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">state<span class="tsd-signature-symbol">:</span> <a href="../enums/localrecoderstate.html" class="tsd-signature-type">LocalRecoderState</a></div>
|
<div class="tsd-signature tsd-kind-icon">state<span class="tsd-signature-symbol">:</span> <a href="../enums/localrecoderstate.html" class="tsd-signature-type">LocalRecoderState</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L31">OpenVidu/LocalRecorder.ts:31</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L34">OpenVidu/LocalRecorder.ts:34</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
@ -135,7 +138,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L222">OpenVidu/LocalRecorder.ts:222</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L225">OpenVidu/LocalRecorder.ts:225</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -157,7 +160,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L241">OpenVidu/LocalRecorder.ts:241</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L244">OpenVidu/LocalRecorder.ts:244</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -179,7 +182,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L262">OpenVidu/LocalRecorder.ts:262</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L265">OpenVidu/LocalRecorder.ts:265</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -201,7 +204,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L154">OpenVidu/LocalRecorder.ts:154</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L157">OpenVidu/LocalRecorder.ts:157</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -224,7 +227,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L190">OpenVidu/LocalRecorder.ts:190</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L193">OpenVidu/LocalRecorder.ts:193</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -252,7 +255,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L56">OpenVidu/LocalRecorder.ts:56</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L59">OpenVidu/LocalRecorder.ts:59</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -275,7 +278,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L172">OpenVidu/LocalRecorder.ts:172</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L175">OpenVidu/LocalRecorder.ts:175</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -298,7 +301,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L132">OpenVidu/LocalRecorder.ts:132</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L135">OpenVidu/LocalRecorder.ts:135</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -321,7 +324,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L281">OpenVidu/LocalRecorder.ts:281</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L284">OpenVidu/LocalRecorder.ts:284</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -358,7 +361,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L321">OpenVidu/LocalRecorder.ts:321</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L324">OpenVidu/LocalRecorder.ts:324</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -511,15 +514,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -119,7 +122,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L51">OpenVidu/OpenVidu.ts:51</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L57">OpenVidu/OpenVidu.ts:57</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<h4 class="tsd-returns-title">Returns <a href="openvidu.html" class="tsd-signature-type">OpenVidu</a></h4>
|
<h4 class="tsd-returns-title">Returns <a href="openvidu.html" class="tsd-signature-type">OpenVidu</a></h4>
|
||||||
|
@ -139,7 +142,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L197">OpenVidu/OpenVidu.ts:197</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L203">OpenVidu/OpenVidu.ts:203</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -162,7 +165,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L314">OpenVidu/OpenVidu.ts:314</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L320">OpenVidu/OpenVidu.ts:320</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -184,7 +187,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L215">OpenVidu/OpenVidu.ts:215</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L221">OpenVidu/OpenVidu.ts:221</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -206,7 +209,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L284">OpenVidu/OpenVidu.ts:284</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L290">OpenVidu/OpenVidu.ts:290</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -275,7 +278,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L188">OpenVidu/OpenVidu.ts:188</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L194">OpenVidu/OpenVidu.ts:194</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -309,7 +312,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L68">OpenVidu/OpenVidu.ts:68</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L74">OpenVidu/OpenVidu.ts:74</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -340,7 +343,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L69">OpenVidu/OpenVidu.ts:69</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L75">OpenVidu/OpenVidu.ts:75</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -374,7 +377,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L70">OpenVidu/OpenVidu.ts:70</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L76">OpenVidu/OpenVidu.ts:76</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -432,7 +435,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L71">OpenVidu/OpenVidu.ts:71</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L77">OpenVidu/OpenVidu.ts:77</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -503,7 +506,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L159">OpenVidu/OpenVidu.ts:159</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L165">OpenVidu/OpenVidu.ts:165</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -525,7 +528,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L160">OpenVidu/OpenVidu.ts:160</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L166">OpenVidu/OpenVidu.ts:166</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||||
|
@ -551,7 +554,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L62">OpenVidu/OpenVidu.ts:62</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L68">OpenVidu/OpenVidu.ts:68</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -582,7 +585,7 @@ OV.getUserMedia({
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L329">OpenVidu/OpenVidu.ts:329</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L335">OpenVidu/OpenVidu.ts:335</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -728,15 +731,6 @@ OV.getUserMedia({
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -214,15 +217,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -550,15 +553,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -368,15 +371,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -367,15 +370,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -956,15 +959,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -341,15 +344,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -363,15 +366,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -301,15 +304,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -367,15 +370,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -486,15 +489,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -344,15 +347,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -227,15 +230,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -367,15 +370,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -273,15 +276,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="../interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="assets/css/main.css">
|
<link rel="stylesheet" href="assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -105,50 +108,9 @@
|
||||||
<li class="tsd-kind-interface"><a href="interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a></li>
|
<li class="tsd-kind-interface"><a href="interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section class="tsd-index-section tsd-is-not-exported">
|
|
||||||
<h3>Variables</h3>
|
|
||||||
<ul class="tsd-index-list">
|
|
||||||
<li class="tsd-kind-variable tsd-is-not-exported"><a href="index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a></li>
|
|
||||||
<li class="tsd-kind-variable tsd-is-not-exported"><a href="index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a></li>
|
|
||||||
<li class="tsd-kind-variable tsd-is-not-exported"><a href="index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
<section class="tsd-panel-group tsd-member-group tsd-is-not-exported">
|
|
||||||
<h2>Variables</h2>
|
|
||||||
<section class="tsd-panel tsd-member tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a name="mediarecorder" class="tsd-anchor"></a>
|
|
||||||
<h3>Media<wbr>Recorder</h3>
|
|
||||||
<div class="tsd-signature tsd-kind-icon">Media<wbr>Recorder<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
|
||||||
<aside class="tsd-sources">
|
|
||||||
<ul>
|
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/LocalRecorder.ts#L21">OpenVidu/LocalRecorder.ts:21</a></li>
|
|
||||||
</ul>
|
|
||||||
</aside>
|
|
||||||
</section>
|
|
||||||
<section class="tsd-panel tsd-member tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a name="recorder_param" class="tsd-anchor"></a>
|
|
||||||
<h3><span class="tsd-flag ts-flagConst">Const</span> RECORDER_<wbr>PARAM</h3>
|
|
||||||
<div class="tsd-signature tsd-kind-icon">RECORDER_<wbr>PARAM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"&recorder="</span><span class="tsd-signature-symbol"> = "&recorder="</span></div>
|
|
||||||
<aside class="tsd-sources">
|
|
||||||
<ul>
|
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L33">OpenVidu/OpenVidu.ts:33</a></li>
|
|
||||||
</ul>
|
|
||||||
</aside>
|
|
||||||
</section>
|
|
||||||
<section class="tsd-panel tsd-member tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a name="secret_param" class="tsd-anchor"></a>
|
|
||||||
<h3><span class="tsd-flag ts-flagConst">Const</span> SECRET_<wbr>PARAM</h3>
|
|
||||||
<div class="tsd-signature tsd-kind-icon">SECRET_<wbr>PARAM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"?secret="</span><span class="tsd-signature-symbol"> = "?secret="</span></div>
|
|
||||||
<aside class="tsd-sources">
|
|
||||||
<ul>
|
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu/OpenVidu.ts#L32">OpenVidu/OpenVidu.ts:32</a></li>
|
|
||||||
</ul>
|
|
||||||
</aside>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
<nav class="tsd-navigation primary">
|
<nav class="tsd-navigation primary">
|
||||||
|
@ -235,15 +197,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="interfaces/subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -243,15 +246,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -346,15 +349,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -241,15 +244,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -386,15 +389,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -245,15 +248,6 @@
|
||||||
<li class=" tsd-kind-interface">
|
<li class=" tsd-kind-interface">
|
||||||
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
<a href="subscriberproperties.html" class="tsd-kind-icon">Subscriber<wbr>Properties</a>
|
||||||
</li>
|
</li>
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="/docs/reference-docs/openvidu-browser/" class="title"><img class="logo-small" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png"></a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-browser/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -258,15 +261,6 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="after-current">
|
<ul class="after-current">
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#mediarecorder" class="tsd-kind-icon">Media<wbr>Recorder</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#recorder_param" class="tsd-kind-icon">RECORDER_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
<li class=" tsd-kind-variable tsd-is-not-exported">
|
|
||||||
<a href="../index.html#secret_param" class="tsd-kind-icon">SECRET_<wbr>PARAM</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"browserify-prod": "VERSION=${VERSION:-}; cd src && browserify --debug Main.ts -p [ tsify ] --exclude kurento-browser-extensions | uglifyjs --source-map content=inline --output ../static/js/openvidu-browser-$VERSION.min.js",
|
"browserify-prod": "VERSION=${VERSION:-}; cd src && browserify --debug Main.ts -p [ tsify ] --exclude kurento-browser-extensions | uglifyjs --source-map content=inline --output ../static/js/openvidu-browser-$VERSION.min.js",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"updatetsc": "cd src/OpenVidu && tsc && cd ../.. && tsc --declaration src/index.ts --outDir ./lib --sourceMap --lib dom,es5,es2015.promise,scripthost",
|
"updatetsc": "cd src/OpenVidu && tsc && cd ../.. && tsc --declaration src/index.ts --outDir ./lib --sourceMap --lib dom,es5,es2015.promise,scripthost",
|
||||||
"docs": "typedoc --options ./config/typedoc/typedoc.js --out ./docs ./src && rm -rf ../../openvidu.io/api/openvidu-browser/* && cp -R ./docs/. ../../openvidu.io/api/openvidu-browser"
|
"docs": "grunt --gruntfile config/typedoc/custom-theme/gruntfile.js && typedoc --options ./config/typedoc/typedoc.js --out ./docs ./src && rm -rf ../../openvidu.io/api/openvidu-browser/* && cp -R ./docs/. ../../openvidu.io/api/openvidu-browser"
|
||||||
},
|
},
|
||||||
"types": "lib/OpenVidu/index.d.ts",
|
"types": "lib/OpenVidu/index.d.ts",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -37,6 +37,15 @@
|
||||||
"typedoc": "^0.11.1",
|
"typedoc": "^0.11.1",
|
||||||
"typedoc-plugin-sourcefile-url": "^1.0.3",
|
"typedoc-plugin-sourcefile-url": "^1.0.3",
|
||||||
"typescript": "2.7.2",
|
"typescript": "2.7.2",
|
||||||
"uglify-js": "3.3.20"
|
"uglify-js": "3.3.20",
|
||||||
|
"grunt": "^1.0.1",
|
||||||
|
"grunt-autoprefixer": "^3.0.4",
|
||||||
|
"grunt-cli": "^1.2.0",
|
||||||
|
"grunt-contrib-copy": "^1.0.0",
|
||||||
|
"grunt-contrib-sass": "^1.0.0",
|
||||||
|
"grunt-contrib-uglify": "^2.3.0",
|
||||||
|
"grunt-contrib-watch": "~1.0.0",
|
||||||
|
"grunt-string-replace": "^1.0.0",
|
||||||
|
"grunt-ts": "^5.5.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -18,6 +18,9 @@
|
||||||
import { Stream } from '..';
|
import { Stream } from '..';
|
||||||
import { LocalRecoderState } from '../OpenViduInternal/Enums/LocalRecorderState';
|
import { LocalRecoderState } from '../OpenViduInternal/Enums/LocalRecorderState';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @hidden
|
||||||
|
*/
|
||||||
declare var MediaRecorder: any;
|
declare var MediaRecorder: any;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,13 @@ import * as screenSharing from '../OpenViduInternal/ScreenSharing/Screen-Capturi
|
||||||
|
|
||||||
import platform = require('platform');
|
import platform = require('platform');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @hidden
|
||||||
|
*/
|
||||||
const SECRET_PARAM = '?secret=';
|
const SECRET_PARAM = '?secret=';
|
||||||
|
/**
|
||||||
|
* @hidden
|
||||||
|
*/
|
||||||
const RECORDER_PARAM = '&recorder=';
|
const RECORDER_PARAM = '&recorder=';
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue