mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-10 17:38:39 +00:00
Also unify the mobile and web features into one, even though internally they still have separate ways to enable the functionality.
20 lines
367 B
JavaScript
20 lines
367 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Example shared video link.
|
|
* @type {string}
|
|
*/
|
|
export const defaultSharedVideoLink = 'https://youtu.be/TB7LlM4erx8';
|
|
|
|
/**
|
|
* Fixed name of the video player fake participant.
|
|
* @type {string}
|
|
*/
|
|
export const VIDEO_PLAYER_PARTICIPANT_NAME = 'YouTube';
|
|
|
|
/**
|
|
* Shared video command.
|
|
* @type {string}
|
|
*/
|
|
export const SHARED_VIDEO = 'shared-video';
|