|
50 | 50 | 'background: #fff; color: #222'
|
51 | 51 | )
|
52 | 52 | console.log('')
|
| 53 | + console.log( |
| 54 | + '%c [app] ' + '%c : app context. Default: `live`', |
| 55 | + 'background: #222; color: #ebefd0', |
| 56 | + 'background: #fff; color: #222' |
| 57 | + ) |
| 58 | + console.log('') |
| 59 | + console.log( |
| 60 | + '%c [url] ' + |
| 61 | + '%c : The optional service URL (including protocol and possible port) that `GET` requests will be made on to retrieve the current list of live streams. Default: `undefined`', |
| 62 | + 'background: #222; color: #ebefd0', |
| 63 | + 'background: #fff; color: #222' |
| 64 | + ) |
| 65 | + console.log('') |
| 66 | + console.log( |
| 67 | + '%c [vod] ' + |
| 68 | + '%c : The option to allow for live seek controls of the main stream. Default: `true`', |
| 69 | + 'background: #222; color: #ebefd0', |
| 70 | + 'background: #fff; color: #222' |
| 71 | + ) |
| 72 | + console.log('') |
| 73 | + console.log( |
| 74 | + '%c [abr] ' + |
| 75 | + '%c : Flag to notify the application that the server uses Adaptive Bitrate control to provide different variants of the live streams. Default: `false`', |
| 76 | + 'background: #222; color: #ebefd0', |
| 77 | + 'background: #fff; color: #222' |
| 78 | + ) |
| 79 | + console.log('') |
| 80 | + console.log( |
| 81 | + '%c [abrlow] ' + |
| 82 | + '%c : When `abr=true`, the specified ladder suffix/index at which the lowest ABR variant resides. This is used in accessing the live stream by name. All the non "main feed" subscribe will then load and playback the lowest ABR variant. Default: `3`', |
| 83 | + 'background: #222; color: #ebefd0', |
| 84 | + 'background: #fff; color: #222' |
| 85 | + ) |
| 86 | + console.log('') |
| 87 | + console.log( |
| 88 | + '%c [abrhigh] ' + |
| 89 | + '%c : When `abr=true`, the specified ladder suffic/index at which the highest ABR variant resides. This is used in accessing the live stream by name. Only the "main feed" playback will load the highest ABR variant. Default: `1`', |
| 90 | + 'background: #222; color: #ebefd0', |
| 91 | + 'background: #fff; color: #222' |
| 92 | + ) |
| 93 | + console.log('') |
| 94 | + console.log( |
| 95 | + '%c [abrhigh] ' + |
| 96 | + '%c : When `abr=true`, the specified ladder suffic/index at which the highest ABR variant resides. This is used in accessing the live stream by name. Only the "main feed" playback will load the highest ABR variant. Default: `1`', |
| 97 | + 'background: #222; color: #ebefd0', |
| 98 | + 'background: #fff; color: #222' |
| 99 | + ) |
| 100 | + console.log('') |
| 101 | + console.log( |
| 102 | + '%c [vodbase] ' + |
| 103 | + '%c : The base URL in which the VOD files for the live streams are located. By default it will look on the `host` for the VOD files. Using this query param you can specify a specific remote base location where the VOD files can be found - such as a CDN or NFS. Default: `undefined`', |
| 104 | + 'background: #222; color: #ebefd0', |
| 105 | + 'background: #fff; color: #222' |
| 106 | + ) |
| 107 | + console.log('') |
| 108 | + console.log( |
| 109 | + '%c [embed] ' + |
| 110 | + '%c : Flag to enable the ability for users to access the embed options to host their own TrueTime MultiView web application. Default: `false`', |
| 111 | + 'background: #222; color: #ebefd0', |
| 112 | + 'background: #fff; color: #222' |
| 113 | + ) |
| 114 | + console.log('') |
| 115 | + console.log( |
| 116 | + '%c [debug] ' + |
| 117 | + '%c : Flag to enable debug logging in the browser Dev Console. Default: `false`', |
| 118 | + 'background: #222; color: #ebefd0', |
| 119 | + 'background: #fff; color: #222' |
| 120 | + ) |
| 121 | + console.log('') |
53 | 122 | console.log('------- /USAGE --------')
|
54 | 123 | })()
|
55 | 124 | </script>
|
|
80 | 149 | <button id="flip-button">Flip</button>
|
81 | 150 | </p>
|
82 | 151 | </div>
|
| 152 | + <!-- Intro Modal --> |
| 153 | + <div id="intro" class="intro-container hidden"> |
| 154 | + <div class="intro-container_info"> |
| 155 | + <p> |
| 156 | + The Red5 Pro TrueTime MultiView™ is a web-based application that |
| 157 | + allows for viewing multiple live streams while providing the ability |
| 158 | + to switch between a "main feed" which has <em>optional</em> live seek |
| 159 | + integration. Additionally, it provides embedding options to easily add |
| 160 | + a TrueTime MultiView to your own website! |
| 161 | + </p> |
| 162 | + <p> |
| 163 | + More information about query parameters and configuration can be seen |
| 164 | + by opening the Dev Console of your browser. |
| 165 | + </p> |
| 166 | + <p class="intro-container_buttons"> |
| 167 | + <button id="intro-submit">Got it!</button> |
| 168 | + </p> |
| 169 | + </div> |
| 170 | + </div> |
83 | 171 | <!-- Embed Mode Dialog -->
|
84 | 172 | <dialog id="embed-dialog">
|
85 | 173 | <div class="embed-dialog_container">
|
|
0 commit comments