2021-03-03 14:37:38 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
/**
|
2021-05-13 11:36:19 +00:00
|
|
|
* Placeholder for web share video input.
|
2021-03-03 14:37:38 +00:00
|
|
|
* @type {string}
|
|
|
|
*/
|
2021-04-16 09:43:34 +00:00
|
|
|
export const defaultSharedVideoLink = 'Youtube link or direct video link';
|
2021-03-03 14:37:38 +00:00
|
|
|
|
2021-05-13 11:36:19 +00:00
|
|
|
/**
|
|
|
|
* Mobile example for a youtube video
|
|
|
|
*/
|
|
|
|
export const defaultMobileSharedVideoLink = 'https://youtu.be/TB7LlM4erx8';
|
|
|
|
|
2021-03-03 14:37:38 +00:00
|
|
|
/**
|
|
|
|
* Fixed name of the video player fake participant.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2021-04-16 09:43:34 +00:00
|
|
|
export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fixed name of the youtube player fake participant.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
|
|
|
|
|
2021-03-03 14:37:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shared video command.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const SHARED_VIDEO = 'shared-video';
|