aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/videos/embed.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-03-14 14:28:20 +0100
committerChocobozzz <me@florianbigard.com>2022-03-14 14:36:35 +0100
commit57d6503286b114fee61b5e4725825e2490dcac29 (patch)
tree2d3d23f697b2986d7e41bb443754394296b66ec3 /client/src/standalone/videos/embed.ts
parent9597920ee3d4ac99803e7107983ddf98a9dfb3c4 (diff)
downloadPeerTube-57d6503286b114fee61b5e4725825e2490dcac29.tar.gz
PeerTube-57d6503286b114fee61b5e4725825e2490dcac29.tar.zst
PeerTube-57d6503286b114fee61b5e4725825e2490dcac29.zip
Reorganize player files
Diffstat (limited to 'client/src/standalone/videos/embed.ts')
-rw-r--r--client/src/standalone/videos/embed.ts9
1 files changed, 4 insertions, 5 deletions
diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts
index 9e4d87911..55c26ec3b 100644
--- a/client/src/standalone/videos/embed.ts
+++ b/client/src/standalone/videos/embed.ts
@@ -1,6 +1,6 @@
1import './embed.scss' 1import './embed.scss'
2import '../../assets/player/dock/peertube-dock-component' 2import '../../assets/player/shared/dock/peertube-dock-component'
3import '../../assets/player/dock/peertube-dock-plugin' 3import '../../assets/player/shared/dock/peertube-dock-plugin'
4import videojs from 'video.js' 4import videojs from 'video.js'
5import { peertubeTranslate } from '../../../../shared/core-utils/i18n' 5import { peertubeTranslate } from '../../../../shared/core-utils/i18n'
6import { 6import {
@@ -17,15 +17,14 @@ import {
17 VideoPlaylistElement, 17 VideoPlaylistElement,
18 VideoStreamingPlaylistType 18 VideoStreamingPlaylistType
19} from '../../../../shared/models' 19} from '../../../../shared/models'
20import { P2PMediaLoaderOptions, PeertubePlayerManagerOptions, PlayerMode } from '../../assets/player' 20import { P2PMediaLoaderOptions, PeertubePlayerManagerOptions, PlayerMode, VideoJSCaption } from '../../assets/player'
21import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings'
22import { TranslationsManager } from '../../assets/player/translations-manager' 21import { TranslationsManager } from '../../assets/player/translations-manager'
23import { isP2PEnabled } from '../../assets/player/utils'
24import { getBoolOrDefault } from '../../root-helpers/local-storage-utils' 22import { getBoolOrDefault } from '../../root-helpers/local-storage-utils'
25import { peertubeLocalStorage } from '../../root-helpers/peertube-web-storage' 23import { peertubeLocalStorage } from '../../root-helpers/peertube-web-storage'
26import { PluginsManager } from '../../root-helpers/plugins-manager' 24import { PluginsManager } from '../../root-helpers/plugins-manager'
27import { UserLocalStorageKeys, UserTokens } from '../../root-helpers/users' 25import { UserLocalStorageKeys, UserTokens } from '../../root-helpers/users'
28import { objectToUrlEncoded } from '../../root-helpers/utils' 26import { objectToUrlEncoded } from '../../root-helpers/utils'
27import { isP2PEnabled } from '../../root-helpers/video'
29import { RegisterClientHelpers } from '../../types/register-client-option.model' 28import { RegisterClientHelpers } from '../../types/register-client-option.model'
30import { PeerTubeEmbedApi } from './embed-api' 29import { PeerTubeEmbedApi } from './embed-api'
31 30