cloudinary-video-player
Version:
Cloudinary Video Player
25 lines (23 loc) • 1.53 kB
JavaScript
const INTERACTION_AREA_LAYOUT_LOCAL_STORAGE_NAME = 'cld-ia-layout-state';
const INTERACTION_AREAS_PREFIX = 'vp-ia';
const INTERACTION_AREAS_CONTAINER_CLASS_NAME = 'interaction-areas-container';
const INTERACTION_AREAS_TEMPLATE = {
PORTRAIT: 'portrait',
LANDSCAPE: 'landscape',
All: 'all',
CENTER: 'center'
};
const INTERACTION_AREAS_THEME = {
PULSING: 'pulsing',
SHADOWED: 'shadowed'
};
const TEMPLATE_INTERACTION_AREAS_VTT = {
[]: 'https://res.cloudinary.com/prod/raw/upload/v1623772481/video-player/vtts/portrait.vtt',
[]: 'https://res.cloudinary.com/prod/raw/upload/v1623772303/video-player/vtts/landscape.vtt',
[]: 'https://res.cloudinary.com/prod/raw/upload/v1623250266/video-player/vtts/all.vtt',
[]: 'https://res.cloudinary.com/prod/raw/upload/v1623250265/video-player/vtts/center.vtt'
};
const INTERACTION_AREA_HAND_ICON = 'https://res.cloudinary.com/prod/image/upload/v1626764643/video-player/interaction-area-hand.svg';
const CLOSE_INTERACTION_AREA_LAYOUT_DELAY = 4500;
const DEFAULT_INTERACTION_ARE_TRANSITION = 250;
export { CLOSE_INTERACTION_AREA_LAYOUT_DELAY as C, DEFAULT_INTERACTION_ARE_TRANSITION as D, INTERACTION_AREA_HAND_ICON as I, TEMPLATE_INTERACTION_AREAS_VTT as T, INTERACTION_AREAS_PREFIX as a, INTERACTION_AREA_LAYOUT_LOCAL_STORAGE_NAME as b, INTERACTION_AREAS_CONTAINER_CLASS_NAME as c, INTERACTION_AREAS_THEME as d, INTERACTION_AREAS_TEMPLATE as e };