32 lines
645 B
JavaScript
32 lines
645 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Placeholder for web share video input.
|
|
* @type {string}
|
|
*/
|
|
export const defaultSharedVideoLink = 'Youtube link or direct video link';
|
|
|
|
/**
|
|
* Mobile example for a youtube video
|
|
*/
|
|
export const defaultMobileSharedVideoLink = 'https://youtu.be/TB7LlM4erx8';
|
|
|
|
/**
|
|
* Fixed name of the video player fake participant.
|
|
* @type {string}
|
|
*/
|
|
export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
|
|
|
|
/**
|
|
* Fixed name of the youtube player fake participant.
|
|
* @type {string}
|
|
*/
|
|
export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
|
|
|
|
|
|
/**
|
|
* Shared video command.
|
|
* @type {string}
|
|
*/
|
|
export const SHARED_VIDEO = 'shared-video';
|