├── .eslintrc ├── .github ├── .dependabot.yml ├── dco.yml ├── pull_request_template.md └── workflows │ └── deploy.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmcheckrc ├── .npmrc ├── .prettierrc ├── .stylelintrc ├── LICENSE ├── README.md ├── commitlint.config.js ├── gatsby-browser.js ├── gatsby-config.js ├── package.json ├── src ├── components │ ├── CustomCard │ │ ├── CustomCard.js │ │ └── CustomCard.module.scss │ ├── EmbedPlayer │ │ ├── Controls │ │ │ ├── advanced.js │ │ │ ├── basic.js │ │ │ ├── custom.js │ │ │ ├── fullscreen.js │ │ │ ├── index.js │ │ │ ├── index.module.scss │ │ │ └── multi.js │ │ ├── Modules │ │ │ ├── ExampleMedia.js │ │ │ ├── ExampleMedia.module.scss │ │ │ ├── LoadContent.js │ │ │ ├── LoadContent.module.scss │ │ │ ├── MediaSwitcher.js │ │ │ ├── Property.js │ │ │ ├── Property.module.scss │ │ │ ├── SeekBar.js │ │ │ └── SeekBar.module.scss │ │ ├── index.js │ │ └── index.module.scss │ ├── GQLCodeSnippet │ │ ├── GQLCodeSnippet.js │ │ └── GQLCodeSnippet.module.scss │ ├── HashAuthenticationTest │ │ ├── HashAuthentication.module.scss │ │ ├── HashAuthenticationTest.js │ │ └── Notification.js │ └── decors.js ├── data │ └── nav-items.yaml ├── gatsby-theme-carbon │ ├── components │ │ ├── Footer.js │ │ ├── Footer │ │ │ └── Footer.js │ │ ├── FourOhFour │ │ │ ├── FourOhFour.js │ │ │ └── FourOhFour.module.scss │ │ ├── Header │ │ │ ├── Content.js │ │ │ ├── Header.js │ │ │ ├── HeaderShadow.module.scss │ │ │ ├── LeftNavHeaderMenus.js │ │ │ └── index.js │ │ ├── HeaderNav │ │ │ └── HeaderNav.js │ │ ├── HeaderShadow.module.scss │ │ ├── HomepageClone │ │ │ ├── Banner.js │ │ │ ├── Banner.module.scss │ │ │ └── index.js │ │ ├── Layout.js │ │ ├── LeftNav │ │ │ ├── LeftNav.js │ │ │ ├── LeftNavShadow.module.scss │ │ │ └── Title.js │ │ ├── MainNavContent.js │ │ ├── MainNavContentHeader.js │ │ ├── Meta.js │ │ └── Switcher │ │ │ ├── Switcher.js │ │ │ └── SwitcherShadow.module.scss │ └── templates │ │ ├── Default.js │ │ ├── Homepage.js │ │ ├── Homepage.module.scss │ │ └── HomepageTemplate.js ├── images │ ├── carbon.jpg │ ├── card-icon-github.svg │ ├── example-channel-creativelive.png │ ├── example-channel-demo.jpg │ ├── example-channel-ibm.jpg │ ├── example-multiview-1.png │ ├── favicon.svg │ └── hero@2x.png ├── pages │ ├── 404.js │ ├── analytics-api-getting-started.mdx │ ├── analytics-api │ │ ├── authenticated-viewers.mdx │ │ ├── peak-viewer-numbers.mdx │ │ ├── total-views.mdx │ │ ├── unique-devices.mdx │ │ ├── viewer-seconds.mdx │ │ ├── viewers.mdx │ │ └── views.mdx │ ├── api-basics-authentication.mdx │ ├── api-basics-native-apps.mdx │ ├── api-basics-overview.mdx │ ├── api-basics-rate-limits.mdx │ ├── api-basics-testing-apis.mdx │ ├── api-basics-token-revocation.mdx │ ├── channel-api-basic-channel-management.mdx │ ├── channel-api-broadcast-settings │ │ ├── broadcasting-devices.mdx │ │ ├── ingest-settings.mdx │ │ └── multi-quality-streaming.mdx │ ├── channel-api-caption-autopublish.mdx │ ├── channel-api-channel-page-design │ │ ├── channel-picture.mdx │ │ ├── cover-image.mdx │ │ ├── displaying-metadata.mdx │ │ ├── featured-videos.mdx │ │ ├── overview.mdx │ │ └── playlists-on-channel-page.mdx │ ├── channel-api-chat-2-0 │ │ ├── export.mdx │ │ ├── get-started.mdx │ │ ├── initialization.mdx │ │ ├── moderators.mdx │ │ ├── rooms.mdx │ │ └── settings.mdx │ ├── channel-api-custom-metadata │ │ ├── channel-metadata-values.mdx │ │ ├── metadata-fields.mdx │ │ └── video-metadata-values.mdx │ ├── channel-api-events.mdx │ ├── channel-api-getting-started.mdx │ ├── channel-api-live-cta.mdx │ ├── channel-api-off-air-settings │ │ ├── manage-selected-videos.mdx │ │ ├── manage-slideshow.mdx │ │ └── overview.mdx │ ├── channel-api-php-sample-code.mdx │ ├── channel-api-playlists │ │ ├── create-and-manage-playlists.mdx │ │ ├── get-playlist-information.mdx │ │ ├── live-playlist.mdx │ │ └── manage-content-of-playlist.mdx │ ├── channel-api-poll.mdx │ ├── channel-api-qna │ │ ├── export.mdx │ │ ├── get-started.mdx │ │ ├── initialization.mdx │ │ └── moderators.mdx │ ├── channel-api-recording-videos.mdx │ ├── channel-api-security │ │ ├── embed-restriction.mdx │ │ ├── overview.mdx │ │ ├── password-protection.mdx │ │ ├── sharing-control.mdx │ │ └── viewer-authentication.mdx │ ├── channel-api-topic.mdx │ ├── channel-api-video-management │ │ ├── basic-video-management.mdx │ │ ├── control-video-expiration.mdx │ │ ├── copy-a-video.mdx │ │ ├── download-your-videos.mdx │ │ ├── manage-audio-tracks.mdx │ │ ├── manage-captions.mdx │ │ ├── manage-video-chapters.mdx │ │ ├── manage-video-labels.mdx │ │ ├── replace-videos.mdx │ │ ├── scheduled-visibility-change.mdx │ │ ├── set-video-thumbnail.mdx │ │ ├── trim-a-video.mdx │ │ └── upload-videos-new.mdx │ ├── channel-api-watson-live-captioning.mdx │ ├── channel-api-white-label-broadcasting │ │ ├── customize-player-branding.mdx │ │ ├── hide-channel-page.mdx │ │ ├── hide-viewer-numbers-in-player.mdx │ │ └── overview.mdx │ ├── contributions.mdx │ ├── index.mdx │ ├── organization-api-getting-started.mdx │ ├── organization-api │ │ ├── administrators.mdx │ │ ├── custom-roles.mdx │ │ ├── organization-settings.mdx │ │ └── sso-settings.mdx │ ├── player-api-examples │ │ ├── basic-embed.mdx │ │ ├── custom-ui.mdx │ │ ├── dynamic-insertion.mdx │ │ ├── fullscreen-functionality.mdx │ │ ├── multiple-instances.mdx │ │ ├── multiview.mdx │ │ └── responsive-embed.mdx │ ├── player-api-getting-started.mdx │ ├── player-api-url-parameters.mdx │ ├── player-api-usage.mdx │ ├── static-content │ │ ├── advanced-auth-2x.png │ │ ├── advanced-auth2-2x.png │ │ ├── android-state-flow-diagram.png │ │ ├── embed-configurator-copy-to-clipboard.png │ │ ├── embed-configurator-page-location.png │ │ ├── google-cast-receiver-config-step-1.png │ │ ├── google-cast-receiver-config-step-2.png │ │ ├── google-cast-receiver-config-step-3.png │ │ ├── google-cast-receiver-high-level.drawio │ │ ├── google-cast-receiver-high-level.png │ │ ├── viewer-auth-embed-with-token@2x.png │ │ ├── viewer-auth-redirect-flow@2x.png │ │ └── viewer-auth-token-generation@2x.png │ ├── viewer-authentication-api-getting-started.mdx │ ├── viewer-authentication-api-hash-authentication-test.mdx │ ├── viewer-authentication-api-hash-lifetime-and-expiration.mdx │ ├── viewer-authentication-api-implementing-viewer-authentication.mdx │ ├── viewer-authentication-api-using-viewer-authentication-with-other-services.mdx │ ├── viewer-authentication-api-v2-getting-started.mdx │ └── viewer-authentication-api-v2-settings-api.mdx └── styles │ ├── Layout.module.scss │ ├── custom-card-group.scss │ ├── decorator-animation.scss │ └── index.scss └── static ├── CNAME ├── images ├── image.png ├── npm.svg └── poster.png └── videos ├── hero-video.mp4 └── vtt └── hero-video.vtt /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/.dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.github/.dependabot.yml -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.npmcheckrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import './src/styles/index.scss'; 2 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/package.json -------------------------------------------------------------------------------- /src/components/CustomCard/CustomCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/CustomCard/CustomCard.js -------------------------------------------------------------------------------- /src/components/CustomCard/CustomCard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/CustomCard/CustomCard.module.scss -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/advanced.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/basic.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/custom.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/fullscreen.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/index.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/index.module.scss -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Controls/multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Controls/multi.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/ExampleMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/ExampleMedia.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/ExampleMedia.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/ExampleMedia.module.scss -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/LoadContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/LoadContent.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/LoadContent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/LoadContent.module.scss -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/MediaSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/MediaSwitcher.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/Property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/Property.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/Property.module.scss: -------------------------------------------------------------------------------- 1 | .property { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/SeekBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/SeekBar.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/Modules/SeekBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/Modules/SeekBar.module.scss -------------------------------------------------------------------------------- /src/components/EmbedPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/index.js -------------------------------------------------------------------------------- /src/components/EmbedPlayer/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/EmbedPlayer/index.module.scss -------------------------------------------------------------------------------- /src/components/GQLCodeSnippet/GQLCodeSnippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/GQLCodeSnippet/GQLCodeSnippet.js -------------------------------------------------------------------------------- /src/components/GQLCodeSnippet/GQLCodeSnippet.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/GQLCodeSnippet/GQLCodeSnippet.module.scss -------------------------------------------------------------------------------- /src/components/HashAuthenticationTest/HashAuthentication.module.scss: -------------------------------------------------------------------------------- 1 | .inlineNotification { 2 | margin-top: $spacing-07; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/HashAuthenticationTest/HashAuthenticationTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/HashAuthenticationTest/HashAuthenticationTest.js -------------------------------------------------------------------------------- /src/components/HashAuthenticationTest/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/HashAuthenticationTest/Notification.js -------------------------------------------------------------------------------- /src/components/decors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/components/decors.js -------------------------------------------------------------------------------- /src/data/nav-items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/data/nav-items.yaml -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Footer.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/FourOhFour/FourOhFour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/FourOhFour/FourOhFour.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/FourOhFour/FourOhFour.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/FourOhFour/FourOhFour.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Header/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Header/Content.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Header/Header.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Header/HeaderShadow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Header/HeaderShadow.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Header/LeftNavHeaderMenus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Header/LeftNavHeaderMenus.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Header/index.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/HeaderNav/HeaderNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/HeaderNav/HeaderNav.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/HeaderShadow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/HeaderShadow.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/HomepageClone/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/HomepageClone/Banner.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/HomepageClone/Banner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/HomepageClone/Banner.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/HomepageClone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/HomepageClone/index.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Layout.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/LeftNav/LeftNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/LeftNav/LeftNav.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/LeftNav/LeftNavShadow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/LeftNav/LeftNavShadow.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/LeftNav/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/LeftNav/Title.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/MainNavContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/MainNavContent.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/MainNavContentHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/MainNavContentHeader.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Meta.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Switcher/Switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Switcher/Switcher.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/components/Switcher/SwitcherShadow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/components/Switcher/SwitcherShadow.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/templates/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/templates/Default.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/templates/Homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/templates/Homepage.js -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/templates/Homepage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/templates/Homepage.module.scss -------------------------------------------------------------------------------- /src/gatsby-theme-carbon/templates/HomepageTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/gatsby-theme-carbon/templates/HomepageTemplate.js -------------------------------------------------------------------------------- /src/images/carbon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/carbon.jpg -------------------------------------------------------------------------------- /src/images/card-icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/card-icon-github.svg -------------------------------------------------------------------------------- /src/images/example-channel-creativelive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/example-channel-creativelive.png -------------------------------------------------------------------------------- /src/images/example-channel-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/example-channel-demo.jpg -------------------------------------------------------------------------------- /src/images/example-channel-ibm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/example-channel-ibm.jpg -------------------------------------------------------------------------------- /src/images/example-multiview-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/example-multiview-1.png -------------------------------------------------------------------------------- /src/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/favicon.svg -------------------------------------------------------------------------------- /src/images/hero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/images/hero@2x.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/analytics-api-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api-getting-started.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/authenticated-viewers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/authenticated-viewers.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/peak-viewer-numbers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/peak-viewer-numbers.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/total-views.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/total-views.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/unique-devices.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/unique-devices.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/viewer-seconds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/viewer-seconds.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/viewers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/viewers.mdx -------------------------------------------------------------------------------- /src/pages/analytics-api/views.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/analytics-api/views.mdx -------------------------------------------------------------------------------- /src/pages/api-basics-authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/api-basics-authentication.mdx -------------------------------------------------------------------------------- /src/pages/api-basics-native-apps.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/api-basics-native-apps.mdx -------------------------------------------------------------------------------- /src/pages/api-basics-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/api-basics-overview.mdx -------------------------------------------------------------------------------- /src/pages/api-basics-rate-limits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/api-basics-rate-limits.mdx -------------------------------------------------------------------------------- /src/pages/api-basics-testing-apis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/api-basics-testing-apis.mdx -------------------------------------------------------------------------------- /src/pages/api-basics-token-revocation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/api-basics-token-revocation.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-basic-channel-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-basic-channel-management.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-broadcast-settings/broadcasting-devices.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-broadcast-settings/broadcasting-devices.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-broadcast-settings/ingest-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-broadcast-settings/ingest-settings.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-broadcast-settings/multi-quality-streaming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-broadcast-settings/multi-quality-streaming.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-caption-autopublish.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-caption-autopublish.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-channel-page-design/channel-picture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-channel-page-design/channel-picture.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-channel-page-design/cover-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-channel-page-design/cover-image.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-channel-page-design/displaying-metadata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-channel-page-design/displaying-metadata.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-channel-page-design/featured-videos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-channel-page-design/featured-videos.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-channel-page-design/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-channel-page-design/overview.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-channel-page-design/playlists-on-channel-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-channel-page-design/playlists-on-channel-page.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-chat-2-0/export.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-chat-2-0/export.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-chat-2-0/get-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-chat-2-0/get-started.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-chat-2-0/initialization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-chat-2-0/initialization.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-chat-2-0/moderators.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-chat-2-0/moderators.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-chat-2-0/rooms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-chat-2-0/rooms.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-chat-2-0/settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-chat-2-0/settings.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-custom-metadata/channel-metadata-values.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-custom-metadata/channel-metadata-values.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-custom-metadata/metadata-fields.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-custom-metadata/metadata-fields.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-custom-metadata/video-metadata-values.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-custom-metadata/video-metadata-values.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-events.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-events.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-getting-started.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-live-cta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-live-cta.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-off-air-settings/manage-selected-videos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-off-air-settings/manage-selected-videos.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-off-air-settings/manage-slideshow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-off-air-settings/manage-slideshow.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-off-air-settings/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-off-air-settings/overview.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-php-sample-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-php-sample-code.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-playlists/create-and-manage-playlists.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-playlists/create-and-manage-playlists.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-playlists/get-playlist-information.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-playlists/get-playlist-information.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-playlists/live-playlist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-playlists/live-playlist.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-playlists/manage-content-of-playlist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-playlists/manage-content-of-playlist.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-poll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-poll.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-qna/export.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-qna/export.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-qna/get-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-qna/get-started.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-qna/initialization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-qna/initialization.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-qna/moderators.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-qna/moderators.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-recording-videos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-recording-videos.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-security/embed-restriction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-security/embed-restriction.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-security/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-security/overview.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-security/password-protection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-security/password-protection.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-security/sharing-control.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-security/sharing-control.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-security/viewer-authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-security/viewer-authentication.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-topic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-topic.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/basic-video-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/basic-video-management.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/control-video-expiration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/control-video-expiration.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/copy-a-video.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/copy-a-video.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/download-your-videos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/download-your-videos.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/manage-audio-tracks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/manage-audio-tracks.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/manage-captions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/manage-captions.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/manage-video-chapters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/manage-video-chapters.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/manage-video-labels.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/manage-video-labels.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/replace-videos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/replace-videos.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/scheduled-visibility-change.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/scheduled-visibility-change.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/set-video-thumbnail.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/set-video-thumbnail.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/trim-a-video.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/trim-a-video.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-video-management/upload-videos-new.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-video-management/upload-videos-new.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-watson-live-captioning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-watson-live-captioning.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-white-label-broadcasting/customize-player-branding.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-white-label-broadcasting/customize-player-branding.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-white-label-broadcasting/hide-channel-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-white-label-broadcasting/hide-channel-page.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-white-label-broadcasting/hide-viewer-numbers-in-player.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-white-label-broadcasting/hide-viewer-numbers-in-player.mdx -------------------------------------------------------------------------------- /src/pages/channel-api-white-label-broadcasting/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/channel-api-white-label-broadcasting/overview.mdx -------------------------------------------------------------------------------- /src/pages/contributions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/contributions.mdx -------------------------------------------------------------------------------- /src/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/index.mdx -------------------------------------------------------------------------------- /src/pages/organization-api-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/organization-api-getting-started.mdx -------------------------------------------------------------------------------- /src/pages/organization-api/administrators.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/organization-api/administrators.mdx -------------------------------------------------------------------------------- /src/pages/organization-api/custom-roles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/organization-api/custom-roles.mdx -------------------------------------------------------------------------------- /src/pages/organization-api/organization-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/organization-api/organization-settings.mdx -------------------------------------------------------------------------------- /src/pages/organization-api/sso-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/organization-api/sso-settings.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/basic-embed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/basic-embed.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/custom-ui.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/custom-ui.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/dynamic-insertion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/dynamic-insertion.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/fullscreen-functionality.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/fullscreen-functionality.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/multiple-instances.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/multiple-instances.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/multiview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/multiview.mdx -------------------------------------------------------------------------------- /src/pages/player-api-examples/responsive-embed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-examples/responsive-embed.mdx -------------------------------------------------------------------------------- /src/pages/player-api-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-getting-started.mdx -------------------------------------------------------------------------------- /src/pages/player-api-url-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-url-parameters.mdx -------------------------------------------------------------------------------- /src/pages/player-api-usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/player-api-usage.mdx -------------------------------------------------------------------------------- /src/pages/static-content/advanced-auth-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/advanced-auth-2x.png -------------------------------------------------------------------------------- /src/pages/static-content/advanced-auth2-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/advanced-auth2-2x.png -------------------------------------------------------------------------------- /src/pages/static-content/android-state-flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/android-state-flow-diagram.png -------------------------------------------------------------------------------- /src/pages/static-content/embed-configurator-copy-to-clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/embed-configurator-copy-to-clipboard.png -------------------------------------------------------------------------------- /src/pages/static-content/embed-configurator-page-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/embed-configurator-page-location.png -------------------------------------------------------------------------------- /src/pages/static-content/google-cast-receiver-config-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/google-cast-receiver-config-step-1.png -------------------------------------------------------------------------------- /src/pages/static-content/google-cast-receiver-config-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/google-cast-receiver-config-step-2.png -------------------------------------------------------------------------------- /src/pages/static-content/google-cast-receiver-config-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/google-cast-receiver-config-step-3.png -------------------------------------------------------------------------------- /src/pages/static-content/google-cast-receiver-high-level.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/google-cast-receiver-high-level.drawio -------------------------------------------------------------------------------- /src/pages/static-content/google-cast-receiver-high-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/google-cast-receiver-high-level.png -------------------------------------------------------------------------------- /src/pages/static-content/viewer-auth-embed-with-token@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/viewer-auth-embed-with-token@2x.png -------------------------------------------------------------------------------- /src/pages/static-content/viewer-auth-redirect-flow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/viewer-auth-redirect-flow@2x.png -------------------------------------------------------------------------------- /src/pages/static-content/viewer-auth-token-generation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/static-content/viewer-auth-token-generation@2x.png -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-getting-started.mdx -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-hash-authentication-test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-hash-authentication-test.mdx -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-hash-lifetime-and-expiration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-hash-lifetime-and-expiration.mdx -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-implementing-viewer-authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-implementing-viewer-authentication.mdx -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-using-viewer-authentication-with-other-services.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-using-viewer-authentication-with-other-services.mdx -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-v2-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-v2-getting-started.mdx -------------------------------------------------------------------------------- /src/pages/viewer-authentication-api-v2-settings-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/pages/viewer-authentication-api-v2-settings-api.mdx -------------------------------------------------------------------------------- /src/styles/Layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/styles/Layout.module.scss -------------------------------------------------------------------------------- /src/styles/custom-card-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/styles/custom-card-group.scss -------------------------------------------------------------------------------- /src/styles/decorator-animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/styles/decorator-animation.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | developers.video.ibm.com 2 | -------------------------------------------------------------------------------- /static/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/static/images/image.png -------------------------------------------------------------------------------- /static/images/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/static/images/npm.svg -------------------------------------------------------------------------------- /static/images/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/static/images/poster.png -------------------------------------------------------------------------------- /static/videos/hero-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/static/videos/hero-video.mp4 -------------------------------------------------------------------------------- /static/videos/vtt/hero-video.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/video-streaming-developer-docs/HEAD/static/videos/vtt/hero-video.vtt --------------------------------------------------------------------------------