cloudinary-video-player 1.6.2-edge.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +4 -0
- package/.snyk +19 -0
- package/.travis.yml +8 -0
- package/CHANGELOG.md +329 -0
- package/LICENSE +21 -0
- package/README.md +87 -0
- package/dist/cld-video-player.css +2110 -0
- package/dist/cld-video-player.js +5249 -0
- package/dist/cld-video-player.light.css +1766 -0
- package/dist/cld-video-player.light.js +1399 -0
- package/dist/cld-video-player.light.min.css +1 -0
- package/dist/cld-video-player.light.min.js +2 -0
- package/dist/cld-video-player.light.min.js.LICENSE.txt +23 -0
- package/dist/cld-video-player.min.css +1 -0
- package/dist/cld-video-player.min.js +2 -0
- package/dist/cld-video-player.min.js.LICENSE.txt +26 -0
- package/dist/fonts/cloudinary_icon_for_black_bg.svg +69 -0
- package/dist/fonts/cloudinary_icon_for_white_bg.svg +69 -0
- package/docs/360.html +102 -0
- package/docs/_template.html +93 -0
- package/docs/adaptive-streaming.html +297 -0
- package/docs/analytics.html +140 -0
- package/docs/api.html +302 -0
- package/docs/audio.html +136 -0
- package/docs/autoplay-fallback.html +138 -0
- package/docs/autoplay-on-scroll.html +107 -0
- package/docs/codec-fallback.html +158 -0
- package/docs/colors.html +135 -0
- package/docs/components.html +284 -0
- package/docs/custom-cld-errors.html +134 -0
- package/docs/floating-player.html +98 -0
- package/docs/fluid.html +117 -0
- package/docs/force-hls-subtitles-ios.html +159 -0
- package/docs/index.html +83 -0
- package/docs/interaction-area.html +398 -0
- package/docs/live-customer.html +128 -0
- package/docs/multiple-players.html +125 -0
- package/docs/playlist-by-tag-cap.html +182 -0
- package/docs/playlist-by-tag.html +133 -0
- package/docs/playlist.html +133 -0
- package/docs/poster.html +155 -0
- package/docs/raw-url.html +104 -0
- package/docs/recommendations.html +155 -0
- package/docs/scripts.js +156 -0
- package/docs/seek-thumbs.html +90 -0
- package/docs/shoppable.html +335 -0
- package/docs/subtitles-and-captions.html +267 -0
- package/docs/transformations.html +171 -0
- package/docs/ui-config.html +108 -0
- package/docs/vast-vpaid.html +149 -0
- package/env.example.js +6 -0
- package/env.js +6 -0
- package/jest-puppeteer.config.js +14 -0
- package/jest.config.js +196 -0
- package/package.json +99 -0
- package/sandbox.config.json +3 -0
- package/setupJest.js +1 -0
- package/src/assets/fonts/VideoJS.svg +120 -0
- package/src/assets/fonts/VideoJS.ttf +0 -0
- package/src/assets/fonts/VideoJS.woff +0 -0
- package/src/assets/fonts/icons.json +120 -0
- package/src/assets/icons/cloudinary_icon_for_black_bg.svg +69 -0
- package/src/assets/icons/cloudinary_icon_for_white_bg.svg +69 -0
- package/src/assets/icons/cloudinary_logo_for_dark_bg.svg +188 -0
- package/src/assets/icons/cloudinary_logo_for_white_bg.svg +188 -0
- package/src/assets/icons/info-circle.svg +17 -0
- package/src/assets/styles/ads-label.scss +16 -0
- package/src/assets/styles/components/interaction-areas.scss +158 -0
- package/src/assets/styles/components/playlist.scss +213 -0
- package/src/assets/styles/components/themedButton.scss +48 -0
- package/src/assets/styles/components/thumbnail.scss +94 -0
- package/src/assets/styles/components/title-bar.scss +67 -0
- package/src/assets/styles/components/triangle-volume-bar.scss +52 -0
- package/src/assets/styles/icons.scss +257 -0
- package/src/assets/styles/main.scss +324 -0
- package/src/assets/styles/mixins/aspect-ratio.scss +16 -0
- package/src/assets/styles/mixins/disable-transition.scss +3 -0
- package/src/assets/styles/mixins/mixins.scss +5 -0
- package/src/assets/styles/mixins/skin.scss +64 -0
- package/src/assets/styles/variables.scss +2 -0
- package/src/assets/styles/videojs-ima.scss +252 -0
- package/src/components/component-utils.js +20 -0
- package/src/components/index.js +21 -0
- package/src/components/interaction-area/interaction-area.const.js +30 -0
- package/src/components/interaction-area/interaction-area.service.js +223 -0
- package/src/components/interaction-area/interaction-area.utils.js +236 -0
- package/src/components/jumpButtons/jump-10-minus.js +21 -0
- package/src/components/jumpButtons/jump-10-plus.js +20 -0
- package/src/components/logoButton/logo-button.const.js +3 -0
- package/src/components/logoButton/logo-button.js +30 -0
- package/src/components/logoButton/logo-button.scss +15 -0
- package/src/components/playlist/components/playlist-button.js +34 -0
- package/src/components/playlist/components/playlist-next-button.js +18 -0
- package/src/components/playlist/components/playlist-previous-button.js +18 -0
- package/src/components/playlist/components/playlist.js +5 -0
- package/src/components/playlist/components/playlist.scss +15 -0
- package/src/components/playlist/components/upcoming-video-overlay.js +149 -0
- package/src/components/playlist/components/upcoming-video-overlay.scss +86 -0
- package/src/components/playlist/layout/playlist-layout-custom.js +21 -0
- package/src/components/playlist/layout/playlist-layout-horizontal.js +16 -0
- package/src/components/playlist/layout/playlist-layout-vertical.js +19 -0
- package/src/components/playlist/layout/playlist-layout.js +110 -0
- package/src/components/playlist/panel/playlist-panel-item.js +86 -0
- package/src/components/playlist/panel/playlist-panel.js +92 -0
- package/src/components/playlist/playlist-widget.js +119 -0
- package/src/components/playlist/playlist.const.js +14 -0
- package/src/components/playlist/playlist.js +413 -0
- package/src/components/playlist/thumbnail/thumbnail.js +69 -0
- package/src/components/progress-control-events-blocker/progress-control-events-blocker.js +17 -0
- package/src/components/qualitySelector/quality-selector.scss +10 -0
- package/src/components/qualitySelector/qualitySelector.js +152 -0
- package/src/components/recommendations-overlay/index.js +3 -0
- package/src/components/recommendations-overlay/recommendations-overlay-content.js +57 -0
- package/src/components/recommendations-overlay/recommendations-overlay-hide-button.js +18 -0
- package/src/components/recommendations-overlay/recommendations-overlay-item.js +35 -0
- package/src/components/recommendations-overlay/recommendations-overlay-primary-item.js +81 -0
- package/src/components/recommendations-overlay/recommendations-overlay-secondary-item.js +48 -0
- package/src/components/recommendations-overlay/recommendations-overlay-secondary-items-container.js +35 -0
- package/src/components/recommendations-overlay/recommendations-overlay.js +94 -0
- package/src/components/recommendations-overlay/recommendations-overlay.scss +182 -0
- package/src/components/shoppable-bar/layout/bar-layout.js +111 -0
- package/src/components/shoppable-bar/layout/shoppable-panel-toggle.js +64 -0
- package/src/components/shoppable-bar/layout/shoppable-products-overlay.js +87 -0
- package/src/components/shoppable-bar/panel/shoppable-panel-item.js +105 -0
- package/src/components/shoppable-bar/panel/shoppable-panel.js +172 -0
- package/src/components/shoppable-bar/shoppable-post-widget.js +110 -0
- package/src/components/shoppable-bar/shoppable-widget.const.js +52 -0
- package/src/components/shoppable-bar/shoppable-widget.js +111 -0
- package/src/components/shoppable-bar/shoppable-widget.scss +359 -0
- package/src/components/themeButton/themedButton.const.js +3 -0
- package/src/components/themeButton/themedButton.js +25 -0
- package/src/components/title-bar/title-bar.js +79 -0
- package/src/config/defaults.js +25 -0
- package/src/extended-events.js +228 -0
- package/src/index.js +18 -0
- package/src/mixins/eventable.js +54 -0
- package/src/mixins/playlistable.js +106 -0
- package/src/plugins/analytics/index.js +245 -0
- package/src/plugins/autoplay-on-scroll/index.js +86 -0
- package/src/plugins/cloudinary/common.js +216 -0
- package/src/plugins/cloudinary/event-handler-registry.js +46 -0
- package/src/plugins/cloudinary/index.js +345 -0
- package/src/plugins/cloudinary/models/audio-source/audio-source.const.js +11 -0
- package/src/plugins/cloudinary/models/audio-source/audio-source.js +82 -0
- package/src/plugins/cloudinary/models/base-source.js +107 -0
- package/src/plugins/cloudinary/models/image-source.js +26 -0
- package/src/plugins/cloudinary/models/video-source/video-source.const.js +32 -0
- package/src/plugins/cloudinary/models/video-source/video-source.js +239 -0
- package/src/plugins/cloudinary/models/video-source/video-source.utils.js +57 -0
- package/src/plugins/colors/index.js +303 -0
- package/src/plugins/context-menu/components/context-menu-item.js +12 -0
- package/src/plugins/context-menu/components/context-menu.js +63 -0
- package/src/plugins/context-menu/context-menu.scss +30 -0
- package/src/plugins/context-menu/contextMenuContent.js +53 -0
- package/src/plugins/context-menu/index.js +134 -0
- package/src/plugins/dash/index.js +26 -0
- package/src/plugins/dash/setup-audio-tracks.js +112 -0
- package/src/plugins/dash/setup-text-tracks.js +195 -0
- package/src/plugins/dash/videojs-dash.js +372 -0
- package/src/plugins/floating-player/floating-player.scss +74 -0
- package/src/plugins/floating-player/index.js +129 -0
- package/src/plugins/ima/index.js +1775 -0
- package/src/plugins/index.js +31 -0
- package/src/plugins/interactive-plugin/index.js +10 -0
- package/src/plugins/videojs-http-source-selector/components/SourceMenuButton.js +98 -0
- package/src/plugins/videojs-http-source-selector/components/SourceMenuItem.js +52 -0
- package/src/plugins/videojs-http-source-selector/plugin.js +82 -0
- package/src/plugins/videojs-http-source-selector/plugin.scss +9 -0
- package/src/plugins/vtt-thumbnails/index.js +526 -0
- package/src/plugins/vtt-thumbnails/vtt-thumbnails.scss +29 -0
- package/src/utils/api.js +32 -0
- package/src/utils/apply-with-props.js +32 -0
- package/src/utils/array.js +22 -0
- package/src/utils/assign.js +27 -0
- package/src/utils/attributes-normalizer.js +72 -0
- package/src/utils/cloudinary.js +165 -0
- package/src/utils/css-prefix.js +43 -0
- package/src/utils/dom.js +74 -0
- package/src/utils/find.js +28 -0
- package/src/utils/fontFace.js +25 -0
- package/src/utils/groupBy.js +12 -0
- package/src/utils/index.js +29 -0
- package/src/utils/matches.js +11 -0
- package/src/utils/mixin.js +5 -0
- package/src/utils/object.js +26 -0
- package/src/utils/playButton.js +9 -0
- package/src/utils/positioning.js +78 -0
- package/src/utils/querystring.js +12 -0
- package/src/utils/slicing.js +21 -0
- package/src/utils/string.js +15 -0
- package/src/utils/throttle.js +30 -0
- package/src/utils/time.js +77 -0
- package/src/utils/type-inference.js +35 -0
- package/src/validators/validators-functions.js +48 -0
- package/src/validators/validators-types.js +78 -0
- package/src/validators/validators.js +110 -0
- package/src/video-player.const.js +68 -0
- package/src/video-player.js +761 -0
- package/src/video-player.utils.js +123 -0
- package/test/adaptive-streaming.test.js +38 -0
- package/test/ads.test.js +35 -0
- package/test/analytics.test.js +111 -0
- package/test/api.test.js +111 -0
- package/test/autoplay.scroll.test.js +23 -0
- package/test/basic-ui.test.js +59 -0
- package/test/colors.test.js +58 -0
- package/test/components.test.js +21 -0
- package/test/custom-error.test.js +24 -0
- package/test/fluid.test.js +36 -0
- package/test/isValidConfig.test.js +224 -0
- package/test/mocks/cloudinary-core-mock.js +0 -0
- package/test/mocks/styleMock.js +1 -0
- package/test/multiplayer.test.js +25 -0
- package/test/playlist.test.js +60 -0
- package/test/puppeteer/vp-env.js +19 -0
- package/test/recommendations.test.js +38 -0
- package/test/title-bar.test.js +28 -0
- package/test/ui-conf.test.js +49 -0
- package/test/unit/cloudinaryConfig.test.js +22 -0
- package/test/unit/cloudinaryUtils.test.js +53 -0
- package/test/unit/utils.test.js +27 -0
- package/test/unit/videoSource.test.js +454 -0
- package/tsconfig.json +15 -0
- package/types/video-player-tests.js +12 -0
- package/types/video-player-tests.ts +31 -0
- package/types/video-player.d.ts +570 -0
package/env.example.js
ADDED
package/env.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// workaround for find-process sudo
|
|
2
|
+
global.process.getuid = () => 0;
|
|
3
|
+
module.exports = {
|
|
4
|
+
server: {
|
|
5
|
+
command: 'node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack/puppeteer.config.js',
|
|
6
|
+
port: 3000,
|
|
7
|
+
launchTimeout: 200000
|
|
8
|
+
},
|
|
9
|
+
launch: {
|
|
10
|
+
headless: true
|
|
11
|
+
},
|
|
12
|
+
browserContext: 'default'
|
|
13
|
+
|
|
14
|
+
};
|
package/jest.config.js
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
// For a detailed explanation regarding each configuration property, visit:
|
|
2
|
+
// https://jestjs.io/docs/en/configuration.html
|
|
3
|
+
const { defaults } = require('jest-config');
|
|
4
|
+
module.exports = {
|
|
5
|
+
// All imported modules in your tests should be mocked automatically
|
|
6
|
+
// automock: true,
|
|
7
|
+
|
|
8
|
+
// Stop running tests after the first failure
|
|
9
|
+
// bail: false,
|
|
10
|
+
|
|
11
|
+
// Respect "browser" field in package.json when resolving modules
|
|
12
|
+
// browser: false,
|
|
13
|
+
|
|
14
|
+
// The directory where Jest should store its cached dependency information
|
|
15
|
+
// cacheDirectory: "/tmp/jest_rs",
|
|
16
|
+
|
|
17
|
+
// Automatically clear mock calls and instances between every test
|
|
18
|
+
// clearMocks: false,
|
|
19
|
+
|
|
20
|
+
// Indicates whether the coverage information should be collected while executing the test
|
|
21
|
+
// collectCoverage: false,
|
|
22
|
+
|
|
23
|
+
// An array of glob patterns indicating a set of files for which coverage information should be collected
|
|
24
|
+
// collectCoverageFrom: null,
|
|
25
|
+
|
|
26
|
+
// The directory where Jest should output its coverage files
|
|
27
|
+
coverageDirectory: 'coverage',
|
|
28
|
+
|
|
29
|
+
// An array of regexp pattern strings used to skip coverage collection
|
|
30
|
+
// coveragePathIgnorePatterns: [
|
|
31
|
+
// "/node_modules/"
|
|
32
|
+
// ],
|
|
33
|
+
|
|
34
|
+
// A list of reporter names that Jest uses when writing coverage reports
|
|
35
|
+
// coverageReporters: [
|
|
36
|
+
// "json",
|
|
37
|
+
// "text",
|
|
38
|
+
// "lcov",
|
|
39
|
+
// "clover"
|
|
40
|
+
// ],
|
|
41
|
+
|
|
42
|
+
// An object that configures minimum threshold enforcement for coverage results
|
|
43
|
+
// coverageThreshold: null,
|
|
44
|
+
|
|
45
|
+
// Make calling deprecated APIs throw helpful error messages
|
|
46
|
+
// errorOnDeprecated: false,
|
|
47
|
+
|
|
48
|
+
// Force coverage collection from ignored files usin a array of glob patterns
|
|
49
|
+
// forceCoverageMatch: [],
|
|
50
|
+
|
|
51
|
+
// A path to a module which exports an async function that is triggered once before all test suites
|
|
52
|
+
// globalSetup: null,
|
|
53
|
+
|
|
54
|
+
// A path to a module which exports an async function that is triggered once after all test suites
|
|
55
|
+
// globalTeardown: null,
|
|
56
|
+
|
|
57
|
+
// A set of global variables that need to be available in all test environments
|
|
58
|
+
globals: {
|
|
59
|
+
window: {}
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
// An array of directory names to be searched recursively up from the requiring module's location
|
|
63
|
+
moduleDirectories: [
|
|
64
|
+
'node_modules',
|
|
65
|
+
'src'
|
|
66
|
+
],
|
|
67
|
+
|
|
68
|
+
// An array of file extensions your modules use
|
|
69
|
+
// moduleFileExtensions: [
|
|
70
|
+
// "js",
|
|
71
|
+
// "json",
|
|
72
|
+
// "jsx",
|
|
73
|
+
// "node"
|
|
74
|
+
// ],
|
|
75
|
+
moduleFileExtensions: [...defaults.moduleFileExtensions, 'd.ts'],
|
|
76
|
+
// A map from regular expressions to module names that allow to stub out resources with a single module
|
|
77
|
+
/*
|
|
78
|
+
moduleNameMapper: {
|
|
79
|
+
'cloudinary-core': '<rootDir>/test/mocks/cloudinary-core-mock.js',
|
|
80
|
+
},
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
|
|
84
|
+
// modulePathIgnorePatterns: [],
|
|
85
|
+
|
|
86
|
+
// Activates notifications for test results
|
|
87
|
+
// notify: false,
|
|
88
|
+
|
|
89
|
+
// An enum that specifies notification mode. Requires { notify: true }
|
|
90
|
+
// notifyMode: "always",
|
|
91
|
+
|
|
92
|
+
// A preset that is used as a base for Jest's configuration
|
|
93
|
+
preset: process.env.UNIT ? '' : 'jest-puppeteer',
|
|
94
|
+
|
|
95
|
+
// Run tests from one or more projects
|
|
96
|
+
// projects: null,
|
|
97
|
+
|
|
98
|
+
// Use this configuration option to add custom reporters to Jest
|
|
99
|
+
// reporters: undefined,
|
|
100
|
+
|
|
101
|
+
// Automatically reset mock state between every test
|
|
102
|
+
// resetMocks: false,
|
|
103
|
+
|
|
104
|
+
// Reset the module registry before running each individual test
|
|
105
|
+
// resetModules: false,
|
|
106
|
+
|
|
107
|
+
// A path to a custom resolver
|
|
108
|
+
// resolver: null,
|
|
109
|
+
|
|
110
|
+
// Automatically restore mock state between every test
|
|
111
|
+
// restoreMocks: false,
|
|
112
|
+
|
|
113
|
+
// The root directory that Jest should scan for tests and modules within
|
|
114
|
+
// rootDir: null,
|
|
115
|
+
|
|
116
|
+
// A list of paths to directories that Jest should use to search for files in
|
|
117
|
+
// roots: [
|
|
118
|
+
// "<rootDir>"
|
|
119
|
+
// ],
|
|
120
|
+
|
|
121
|
+
// Allows you to use a custom runner instead of Jest's default test runner
|
|
122
|
+
// runner: "jest-runner",
|
|
123
|
+
|
|
124
|
+
// The paths to modules that run some code to configure or set up the testing environment before each test
|
|
125
|
+
// setupFiles: [],
|
|
126
|
+
|
|
127
|
+
// The path to a module that runs some code to configure or set up the testing framework before each test
|
|
128
|
+
// setupTestFrameworkScriptFile: null,
|
|
129
|
+
|
|
130
|
+
// A list of paths to snapshot serializer modules Jest should use for snapshot testing
|
|
131
|
+
// snapshotSerializers: [],
|
|
132
|
+
|
|
133
|
+
// The test environment that will be used for testing
|
|
134
|
+
testEnvironment: (process.env.UNIT === 'TRUE') ? 'jsdom' : './test/puppeteer/vp-env.js',
|
|
135
|
+
|
|
136
|
+
// Options that will be passed to the testEnvironment
|
|
137
|
+
// testEnvironmentOptions: {},
|
|
138
|
+
|
|
139
|
+
// Adds a location field to test results
|
|
140
|
+
// testLocationInResults: false,
|
|
141
|
+
|
|
142
|
+
// The glob patterns Jest uses to detect test files
|
|
143
|
+
// testMatch: [
|
|
144
|
+
// "**/__tests__/**/*.js?(x)",
|
|
145
|
+
// "**/?(*.)+(spec|test).js?(x)"
|
|
146
|
+
// ],
|
|
147
|
+
|
|
148
|
+
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
|
|
149
|
+
// testPathIgnorePatterns: [
|
|
150
|
+
// "/node_modules/"
|
|
151
|
+
// ],
|
|
152
|
+
|
|
153
|
+
// The regexp pattern Jest uses to detect test files
|
|
154
|
+
// testRegex: "",
|
|
155
|
+
|
|
156
|
+
// This option allows the use of a custom results processor
|
|
157
|
+
// testResultsProcessor: null,
|
|
158
|
+
|
|
159
|
+
// This option allows use of a custom test runner
|
|
160
|
+
// testRunner: "jasmine2",
|
|
161
|
+
|
|
162
|
+
// This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
|
|
163
|
+
// testURL: "http://localhost",
|
|
164
|
+
|
|
165
|
+
// Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
|
|
166
|
+
// timers: "real",
|
|
167
|
+
|
|
168
|
+
// A map from regular expressions to paths to transformers
|
|
169
|
+
// transform: null,
|
|
170
|
+
|
|
171
|
+
// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
|
|
172
|
+
// transformIgnorePatterns: [
|
|
173
|
+
// "/node_modules/"
|
|
174
|
+
// ],
|
|
175
|
+
|
|
176
|
+
// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
|
|
177
|
+
// unmockedModulePathPatterns: undefined,
|
|
178
|
+
|
|
179
|
+
// Indicates whether each individual test should be reported during the run
|
|
180
|
+
// verbose: null,
|
|
181
|
+
|
|
182
|
+
// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
|
|
183
|
+
// watchPathIgnorePatterns: [],
|
|
184
|
+
|
|
185
|
+
// Whether to use watchman for file crawling
|
|
186
|
+
watchman: false,
|
|
187
|
+
moduleNameMapper: {
|
|
188
|
+
'\\.(css|less|scss)$': '<rootDir>/test/mocks/styleMock.js'
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/*
|
|
192
|
+
transform: {
|
|
193
|
+
'^.+\\.(js|jsx|ts|tsx)$': 'babel-jest'
|
|
194
|
+
}
|
|
195
|
+
*/
|
|
196
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cloudinary-video-player",
|
|
3
|
+
"version": "1.6.2-edge.13",
|
|
4
|
+
"description": "Cloudinary Video Player",
|
|
5
|
+
"bundlewatch": {
|
|
6
|
+
"files": [
|
|
7
|
+
{
|
|
8
|
+
"path": "./dist/cld-video-player.min.js",
|
|
9
|
+
"maxSize": "470kb"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"path": "./dist/cld-video-player.light.min.js",
|
|
13
|
+
"maxSize": "112kb"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"prepare": "yarn run snyk-protect && shx cp env.example.js env.js",
|
|
19
|
+
"start": "webpack-dev-server --config webpack/dev.config.js",
|
|
20
|
+
"start:light": "WEBPACK_BUILD_LIGHT=1 webpack-dev-server --config webpack/dev.config.js",
|
|
21
|
+
"clean": "rm -rf dist",
|
|
22
|
+
"build-dev": "webpack --config webpack/es5.config.js --progress --display-error-details --color --mode=development",
|
|
23
|
+
"build": "webpack --config webpack/es5.config.js --progress --display-error-details --color",
|
|
24
|
+
"postbuild-all": "bundlewatch",
|
|
25
|
+
"build-light-dev": "WEBPACK_BUILD_LIGHT=1 webpack --config webpack/es5.config.js --progress --display-error-details --color --mode=development",
|
|
26
|
+
"build-light": "WEBPACK_BUILD_LIGHT=1 webpack --config webpack/es5.config.js --progress --display-error-details --color",
|
|
27
|
+
"analyze": "webpack --config webpack/analyzer.config.js --json | webpack-bundle-analyzer",
|
|
28
|
+
"analyze:light": "WEBPACK_BUILD_LIGHT=1 webpack --config webpack/analyzer.config.js",
|
|
29
|
+
"build-all": "npm run clean && npm run build && npm run build-dev && npm run build-light && npm run build-light-dev",
|
|
30
|
+
"precommit": "eslint src",
|
|
31
|
+
"predeploy": "deploy=true npm run build-all",
|
|
32
|
+
"deploy": "deploy=true node webpack/deploy.js",
|
|
33
|
+
"postdeploy": "git push origin master --follow-tags",
|
|
34
|
+
"dry:deploy": "node webpack/deploy.js dry",
|
|
35
|
+
"test": "jest --no-cache --detectOpenHandles",
|
|
36
|
+
"test:unit": "UNIT=TRUE jest --no-cache --env jsdom --testPathPattern='test/unit/(.*)+test.js'",
|
|
37
|
+
"snyk-protect": "snyk protect"
|
|
38
|
+
},
|
|
39
|
+
"author": "Cloudinary",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"main": "./dist/cld-video-player.js",
|
|
42
|
+
"style": "./dist/cld-video-player.min.css",
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"dashjs": "^3.2.2",
|
|
45
|
+
"fetch-ponyfill": "^7.1.0",
|
|
46
|
+
"promise-polyfill": "^8.2.0",
|
|
47
|
+
"video.js": "^7.13.3",
|
|
48
|
+
"videojs-contextmenu": "^2.0.2",
|
|
49
|
+
"videojs-contrib-ads": "^6.9.0",
|
|
50
|
+
"videojs-contrib-quality-levels": "^2.1.0",
|
|
51
|
+
"videojs-ima": "^1.9.1",
|
|
52
|
+
"videojs-per-source-behaviors": "^2.1.0",
|
|
53
|
+
"webfontloader": "^1.6.28"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@babel/core": "^7.14.6",
|
|
57
|
+
"@babel/plugin-transform-runtime": "^7.14.5",
|
|
58
|
+
"@babel/preset-env": "^7.14.7",
|
|
59
|
+
"@types/video.js": "^7.3.23",
|
|
60
|
+
"babel-eslint": "^7.2.3",
|
|
61
|
+
"babel-jest": "^24.9.0",
|
|
62
|
+
"babel-loader": "^8.2.2",
|
|
63
|
+
"bundlewatch": "^0.3.2",
|
|
64
|
+
"cloudinary-core": "^2.11.4",
|
|
65
|
+
"copy-webpack-plugin": "4",
|
|
66
|
+
"css-loader": "^5.2.6",
|
|
67
|
+
"eslint": "^5.16.0",
|
|
68
|
+
"eslint-loader": "^2.2.1",
|
|
69
|
+
"eslint-plugin-jest": "^21.27.2",
|
|
70
|
+
"expose-loader": "^0.7.5",
|
|
71
|
+
"file-loader": "^6.2.0",
|
|
72
|
+
"html-webpack-plugin": "^4.5.2",
|
|
73
|
+
"jest": "^26.6.3",
|
|
74
|
+
"jest-fetch-mock": "^3.0.3",
|
|
75
|
+
"jest-puppeteer": "^4.4.0",
|
|
76
|
+
"jest-webpack": "^0.5.1",
|
|
77
|
+
"json-loader": "^0.5.7",
|
|
78
|
+
"mini-css-extract-plugin": "^1.6.2",
|
|
79
|
+
"optimize-css-assets-webpack-plugin": "^5.0.8",
|
|
80
|
+
"puppeteer": "^5.5.0",
|
|
81
|
+
"puppeteer-request-spy": "^1.4.0",
|
|
82
|
+
"sass": "^1.35.1",
|
|
83
|
+
"sass-loader": "10.2.0",
|
|
84
|
+
"shx": "^0.3.3",
|
|
85
|
+
"snyk": "^1.653.0",
|
|
86
|
+
"source-map-loader": "1.1.3",
|
|
87
|
+
"terser-webpack-plugin": "^4.2.3",
|
|
88
|
+
"uglify-js": "^3.13.10",
|
|
89
|
+
"url-loader": "^4.1.1",
|
|
90
|
+
"webpack": "^4.46.0",
|
|
91
|
+
"webpack-bundle-analyzer": "^3.9.0",
|
|
92
|
+
"webpack-cli": "^3.3.12",
|
|
93
|
+
"webpack-conditional-loader": "^1.0.12",
|
|
94
|
+
"webpack-dev-server": "^3.11.2",
|
|
95
|
+
"webpack-merge": "^5.8.0",
|
|
96
|
+
"webworkify-webpack2": "^1.1.9"
|
|
97
|
+
},
|
|
98
|
+
"snyk": true
|
|
99
|
+
}
|
package/setupJest.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('jest-fetch-mock').enableMocks();
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<defs>
|
|
5
|
+
<font id="VideoJS" horiz-adv-x="1792">
|
|
6
|
+
<font-face font-family="VideoJS"
|
|
7
|
+
units-per-em="1792" ascent="1792"
|
|
8
|
+
descent="0" />
|
|
9
|
+
<missing-glyph horiz-adv-x="0" />
|
|
10
|
+
<glyph glyph-name="play"
|
|
11
|
+
unicode=""
|
|
12
|
+
horiz-adv-x="1792" d=" M597.3333333333334 1418.6666666666665V373.3333333333333L1418.6666666666667 896z" />
|
|
13
|
+
<glyph glyph-name="play-circle"
|
|
14
|
+
unicode=""
|
|
15
|
+
horiz-adv-x="1792" d=" M746.6666666666667 560L1194.6666666666667 896L746.6666666666667 1232V560zM896 1642.6666666666667C483.4666666666667 1642.6666666666667 149.3333333333334 1308.5333333333333 149.3333333333334 896S483.4666666666667 149.3333333333333 896 149.3333333333333S1642.6666666666667 483.4666666666667 1642.6666666666667 896S1308.5333333333333 1642.6666666666667 896 1642.6666666666667zM896 298.6666666666665C566.72 298.6666666666665 298.6666666666667 566.7199999999998 298.6666666666667 896S566.72 1493.3333333333333 896 1493.3333333333333S1493.3333333333335 1225.28 1493.3333333333335 896S1225.2800000000002 298.6666666666665 896 298.6666666666665z" />
|
|
16
|
+
<glyph glyph-name="pause"
|
|
17
|
+
unicode=""
|
|
18
|
+
horiz-adv-x="1792" d=" M448 373.3333333333333H746.6666666666667V1418.6666666666665H448V373.3333333333333zM1045.3333333333335 1418.6666666666665V373.3333333333333H1344V1418.6666666666665H1045.3333333333335z" />
|
|
19
|
+
<glyph glyph-name="volume-mute"
|
|
20
|
+
unicode=""
|
|
21
|
+
horiz-adv-x="1792" d=" M1232 896C1232 1027.7866666666666 1155.8400000000001 1141.6533333333332 1045.3333333333335 1196.5333333333333V1031.52L1228.6399999999999 848.2133333333334C1230.88 863.8933333333334 1232 879.9466666666667 1232 896.0000000000001zM1418.6666666666667 896C1418.6666666666667 825.8133333333333 1403.3600000000001 759.7333333333333 1378.3466666666668 698.8799999999999L1491.466666666667 585.7599999999998C1540 678.72 1568 783.9999999999999 1568 896C1568 1215.5733333333333 1344.3733333333334 1482.88 1045.3333333333335 1550.8266666666666V1396.6399999999999C1261.1200000000001 1332.4266666666667 1418.6666666666667 1132.6933333333332 1418.6666666666667 896zM319.2000000000001 1568L224 1472.8L576.8 1120H224V672H522.6666666666667L896 298.6666666666665V800.8L1213.7066666666667 483.0933333333332C1163.68 444.6399999999999 1107.3066666666666 413.6533333333332 1045.3333333333335 394.9866666666665V240.7999999999998C1148 264.32 1241.7066666666667 311.3599999999997 1320.48 375.9466666666663L1472.8000000000002 224L1568 319.1999999999998L896 991.1999999999998L319.2000000000001 1568zM896 1493.3333333333333L739.9466666666667 1337.28L896 1181.2266666666667V1493.3333333333333z" />
|
|
22
|
+
<glyph glyph-name="volume-low"
|
|
23
|
+
unicode=""
|
|
24
|
+
horiz-adv-x="1792" d=" M522.6666666666667 1120V672H821.3333333333334L1194.6666666666667 298.6666666666665V1493.3333333333333L821.3333333333334 1120H522.6666666666667z" />
|
|
25
|
+
<glyph glyph-name="volume-mid"
|
|
26
|
+
unicode=""
|
|
27
|
+
horiz-adv-x="1792" d=" M1381.3333333333335 896C1381.3333333333335 1027.7866666666666 1305.1733333333334 1141.6533333333332 1194.6666666666667 1196.5333333333333V595.0933333333332C1305.1733333333334 650.3466666666666 1381.3333333333335 764.2133333333331 1381.3333333333335 896zM373.3333333333334 1120V672H672L1045.3333333333335 298.6666666666665V1493.3333333333333L672 1120H373.3333333333334z" />
|
|
28
|
+
<glyph glyph-name="volume-high"
|
|
29
|
+
unicode=""
|
|
30
|
+
horiz-adv-x="1792" d=" M224 1120V672H522.6666666666667L896 298.6666666666665V1493.3333333333333L522.6666666666667 1120H224zM1232 896C1232 1027.7866666666666 1155.8400000000001 1141.6533333333332 1045.3333333333335 1196.5333333333333V595.0933333333332C1155.8400000000001 650.3466666666666 1232 764.2133333333331 1232 896zM1045.3333333333335 1550.8266666666666V1396.6399999999999C1261.1200000000001 1332.4266666666667 1418.6666666666667 1132.6933333333332 1418.6666666666667 896S1261.1200000000001 459.5733333333333 1045.3333333333335 395.3600000000002V241.1733333333332C1344.3733333333334 309.1199999999999 1568 576.0533333333333 1568 896S1344.3733333333334 1482.88 1045.3333333333335 1550.8266666666666z" />
|
|
31
|
+
<glyph glyph-name="fullscreen-enter"
|
|
32
|
+
unicode=""
|
|
33
|
+
horiz-adv-x="1792" d=" M522.6666666666667 746.6666666666665H373.3333333333334V373.3333333333333H746.6666666666667V522.6666666666665H522.6666666666667V746.6666666666665zM373.3333333333334 1045.3333333333333H522.6666666666667V1269.3333333333333H746.6666666666667V1418.6666666666665H373.3333333333334V1045.3333333333333zM1269.3333333333335 522.6666666666665H1045.3333333333335V373.3333333333333H1418.6666666666667V746.6666666666665H1269.3333333333335V522.6666666666665zM1045.3333333333335 1418.6666666666665V1269.3333333333333H1269.3333333333335V1045.3333333333333H1418.6666666666667V1418.6666666666665H1045.3333333333335z" />
|
|
34
|
+
<glyph glyph-name="fullscreen-exit"
|
|
35
|
+
unicode=""
|
|
36
|
+
horiz-adv-x="1792" d=" M373.3333333333334 597.3333333333333H597.3333333333334V373.3333333333333H746.6666666666667V746.6666666666665H373.3333333333334V597.3333333333333zM597.3333333333334 1194.6666666666665H373.3333333333334V1045.3333333333333H746.6666666666667V1418.6666666666665H597.3333333333334V1194.6666666666665zM1045.3333333333335 373.3333333333333H1194.6666666666667V597.3333333333333H1418.6666666666667V746.6666666666665H1045.3333333333335V373.3333333333333zM1194.6666666666667 1194.6666666666665V1418.6666666666665H1045.3333333333335V1045.3333333333333H1418.6666666666667V1194.6666666666665H1194.6666666666667z" />
|
|
37
|
+
<glyph glyph-name="square"
|
|
38
|
+
unicode=""
|
|
39
|
+
horiz-adv-x="1792" d=" M1344 1493.3333333333333H448C365.4933333333334 1493.3333333333333 298.6666666666667 1426.5066666666667 298.6666666666667 1344V448C298.6666666666667 365.4933333333331 365.4933333333334 298.6666666666665 448 298.6666666666665H1344C1426.506666666667 298.6666666666665 1493.3333333333335 365.4933333333331 1493.3333333333335 448V1344C1493.3333333333335 1426.5066666666667 1426.506666666667 1493.3333333333333 1344 1493.3333333333333zM1344 448H448V1344H1344V448z" />
|
|
40
|
+
<glyph glyph-name="spinner"
|
|
41
|
+
unicode=""
|
|
42
|
+
horiz-adv-x="1792" d=" M701.8666666666668 1008L1057.6533333333334 1624.3733333333334C1005.7600000000002 1635.9466666666667 951.6266666666666 1642.6666666666667 896 1642.6666666666667C716.8000000000001 1642.6666666666667 552.9066666666668 1579.5733333333333 424.1066666666667 1474.2933333333333L697.76 1000.5333333333334L701.8666666666666 1008zM1608.32 1120C1539.6266666666666 1338.4 1373.1200000000001 1512.7466666666667 1160.6933333333332 1593.3866666666668L887.4133333333334 1120H1608.32zM1627.7333333333336 1045.3333333333333H1068.48L1090.1333333333334 1008L1445.92 392C1567.6266666666668 524.9066666666668 1642.6666666666667 701.4933333333333 1642.6666666666667 896C1642.6666666666667 947.1466666666666 1637.44 997.1733333333332 1627.7333333333336 1045.3333333333333zM637.2800000000001 896L346.08 1400C224.3733333333333 1267.0933333333332 149.3333333333334 1090.5066666666667 149.3333333333334 896C149.3333333333334 844.8533333333332 154.56 794.8266666666666 164.2666666666667 746.6666666666665H723.5200000000001L637.2800000000002 896zM183.68 672C252.3733333333334 453.5999999999999 418.88 279.2533333333334 631.3066666666667 198.6133333333332L904.5866666666668 672H183.68zM1025.1733333333334 672L733.9733333333334 167.6266666666666C786.24 156.0533333333333 840.3733333333334 149.3333333333333 896 149.3333333333333C1075.2 149.3333333333333 1239.0933333333332 212.4266666666665 1367.8933333333334 317.7066666666665L1094.24 791.4666666666666L1025.1733333333334 672z" />
|
|
43
|
+
<glyph glyph-name="subtitles"
|
|
44
|
+
unicode=""
|
|
45
|
+
horiz-adv-x="1792" d=" M1493.3333333333335 1493.3333333333333H298.6666666666667C216.16 1493.3333333333333 149.3333333333334 1426.5066666666667 149.3333333333334 1344V448C149.3333333333334 365.4933333333331 216.16 298.6666666666665 298.6666666666667 298.6666666666665H1493.3333333333335C1575.8400000000001 298.6666666666665 1642.6666666666667 365.4933333333331 1642.6666666666667 448V1344C1642.6666666666667 1426.5066666666667 1575.8400000000001 1493.3333333333333 1493.3333333333335 1493.3333333333333zM298.6666666666667 896H597.3333333333334V746.6666666666665H298.6666666666667V896zM1045.3333333333335 448H298.6666666666667V597.3333333333333H1045.3333333333335V448zM1493.3333333333335 448H1194.6666666666667V597.3333333333333H1493.3333333333335V448zM1493.3333333333335 746.6666666666665H746.6666666666667V896H1493.3333333333335V746.6666666666665z" />
|
|
46
|
+
<glyph glyph-name="captions"
|
|
47
|
+
unicode=""
|
|
48
|
+
horiz-adv-x="1792" d=" M1418.6666666666667 1493.3333333333333H373.3333333333334C290.8266666666667 1493.3333333333333 224 1426.5066666666667 224 1344V448C224 365.4933333333331 290.8266666666667 298.6666666666665 373.3333333333334 298.6666666666665H1418.6666666666667C1501.1733333333334 298.6666666666665 1568 365.4933333333331 1568 448V1344C1568 1426.5066666666667 1501.1733333333334 1493.3333333333333 1418.6666666666667 1493.3333333333333zM821.3333333333334 970.6666666666666H709.3333333333334V1008H560V783.9999999999999H709.3333333333334V821.3333333333333H821.3333333333334V746.6666666666665C821.3333333333334 705.5999999999999 788.1066666666667 672 746.6666666666667 672H522.6666666666667C481.2266666666667 672 448 705.5999999999999 448 746.6666666666665V1045.3333333333333C448 1086.4 481.2266666666667 1120 522.6666666666667 1120H746.6666666666667C788.1066666666667 1120 821.3333333333334 1086.4 821.3333333333334 1045.3333333333333V970.6666666666666zM1344 970.6666666666666H1232V1008H1082.6666666666667V783.9999999999999H1232V821.3333333333333H1344V746.6666666666665C1344 705.5999999999999 1310.7733333333333 672 1269.3333333333335 672H1045.3333333333335C1003.8933333333334 672 970.6666666666669 705.5999999999999 970.6666666666669 746.6666666666665V1045.3333333333333C970.6666666666669 1086.4 1003.8933333333334 1120 1045.3333333333335 1120H1269.3333333333335C1310.7733333333333 1120 1344 1086.4 1344 1045.3333333333333V970.6666666666666z" />
|
|
49
|
+
<glyph glyph-name="chapters"
|
|
50
|
+
unicode=""
|
|
51
|
+
horiz-adv-x="1792" d=" M224 821.3333333333333H373.3333333333334V970.6666666666666H224V821.3333333333333zM224 522.6666666666665H373.3333333333334V672H224V522.6666666666665zM224 1120H373.3333333333334V1269.3333333333333H224V1120zM522.6666666666667 821.3333333333333H1568V970.6666666666666H522.6666666666667V821.3333333333333zM522.6666666666667 522.6666666666665H1568V672H522.6666666666667V522.6666666666665zM522.6666666666667 1269.3333333333333V1120H1568V1269.3333333333333H522.6666666666667z" />
|
|
52
|
+
<glyph glyph-name="share"
|
|
53
|
+
unicode=""
|
|
54
|
+
horiz-adv-x="1792" d=" M1344 590.9866666666665C1287.2533333333333 590.9866666666665 1236.1066666666668 568.9599999999998 1197.2800000000002 533.4933333333331L665.2800000000001 843.7333333333333C669.3866666666667 860.5333333333333 672 878.08 672 896S669.3866666666667 931.4666666666666 665.2800000000001 948.2666666666667L1191.68 1255.52C1231.6266666666668 1218.1866666666665 1285.0133333333335 1195.04 1344 1195.04C1467.5733333333335 1195.04 1568 1295.4666666666665 1568 1419.04S1467.5733333333335 1643.04 1344 1643.04S1120 1542.6133333333332 1120 1419.04C1120 1401.12 1122.6133333333335 1383.5733333333333 1126.72 1366.773333333333L600.3199999999999 1059.5199999999998C560.3733333333333 1096.853333333333 506.9866666666666 1119.9999999999998 448 1119.9999999999998C324.4266666666666 1119.9999999999998 224 1019.5733333333332 224 895.9999999999998S324.4266666666666 671.9999999999998 448 671.9999999999998C506.9866666666666 671.9999999999998 560.3733333333333 695.1466666666665 600.3199999999999 732.4799999999998L1132.32 422.2399999999998C1128.5866666666666 406.5599999999997 1126.3466666666666 390.133333333333 1126.3466666666666 373.3333333333331C1126.3466666666666 253.1199999999997 1223.7866666666669 155.6799999999996 1344 155.6799999999996S1561.6533333333334 253.1199999999997 1561.6533333333334 373.3333333333331S1464.2133333333334 590.9866666666662 1344 590.9866666666662z" />
|
|
55
|
+
<glyph glyph-name="cog"
|
|
56
|
+
unicode=""
|
|
57
|
+
horiz-adv-x="1792" d=" M1450.7733333333333 823.1999999999999C1453.76 847.0933333333334 1456 871.3599999999999 1456 896S1453.76 944.9066666666666 1450.7733333333333 968.8L1608.6933333333336 1092.3733333333332C1622.8800000000003 1103.5733333333333 1626.986666666667 1123.7333333333331 1617.6533333333336 1140.1599999999999L1468.3200000000004 1398.8799999999999C1458.986666666667 1414.9333333333334 1439.5733333333335 1421.6533333333332 1422.7733333333338 1414.9333333333334L1236.8533333333337 1339.8933333333332C1198.4000000000003 1369.3866666666668 1156.2133333333338 1394.3999999999999 1110.6666666666672 1413.44L1082.6666666666667 1611.3066666666666C1079.3066666666668 1628.8533333333332 1064 1642.6666666666667 1045.3333333333335 1642.6666666666667H746.6666666666667C728 1642.6666666666667 712.6933333333334 1628.8533333333332 709.7066666666668 1611.3066666666666L681.7066666666668 1413.44C636.1600000000002 1394.4 593.9733333333335 1369.76 555.5200000000001 1339.8933333333332L369.6 1414.9333333333334C352.8000000000001 1421.28 333.3866666666667 1414.9333333333334 324.0533333333334 1398.88L174.72 1140.1599999999999C165.3866666666667 1124.1066666666666 169.4933333333334 1103.9466666666667 183.68 1092.3733333333332L341.2266666666667 968.8C338.2400000000001 944.9066666666666 336 920.64 336 896S338.2400000000001 847.0933333333334 341.2266666666667 823.1999999999999L183.68 699.6266666666668C169.4933333333334 688.4266666666667 165.3866666666667 668.2666666666667 174.72 651.8399999999999L324.0533333333334 393.1199999999999C333.3866666666667 377.0666666666666 352.8 370.3466666666666 369.6 377.0666666666666L555.5200000000001 452.1066666666666C593.9733333333334 422.6133333333333 636.16 397.5999999999999 681.7066666666668 378.56L709.7066666666668 180.6933333333334C712.6933333333334 163.1466666666668 728 149.3333333333333 746.6666666666667 149.3333333333333H1045.3333333333335C1064 149.3333333333333 1079.3066666666668 163.1466666666665 1082.2933333333333 180.6933333333334L1110.2933333333333 378.56C1155.84 397.5999999999999 1198.0266666666666 422.24 1236.48 452.1066666666666L1422.3999999999999 377.0666666666666C1439.2 370.7199999999998 1458.6133333333332 377.0666666666666 1467.9466666666665 393.1199999999999L1617.2799999999997 651.8399999999999C1626.6133333333332 667.8933333333332 1622.5066666666664 688.0533333333333 1608.3199999999997 699.6266666666668L1450.773333333333 823.1999999999999zM896 634.6666666666665C751.52 634.6666666666665 634.6666666666667 751.52 634.6666666666667 896S751.52 1157.3333333333333 896 1157.3333333333333S1157.3333333333335 1040.48 1157.3333333333335 896S1040.48 634.6666666666665 896 634.6666666666665z" />
|
|
58
|
+
<glyph glyph-name="circle"
|
|
59
|
+
unicode=""
|
|
60
|
+
horiz-adv-x="1792" d=" M149.3333333333334 896C149.3333333333334 483.6273867930074 483.6273867930075 149.3333333333333 896 149.3333333333333C1308.3726132069926 149.3333333333333 1642.6666666666667 483.6273867930074 1642.6666666666667 896C1642.6666666666667 1308.3726132069926 1308.3726132069926 1642.6666666666667 896 1642.6666666666667C483.6273867930075 1642.6666666666667 149.3333333333334 1308.3726132069926 149.3333333333334 896z" />
|
|
61
|
+
<glyph glyph-name="circle-outline"
|
|
62
|
+
unicode=""
|
|
63
|
+
horiz-adv-x="1792" d=" M896 1642.6666666666667C483.4666666666667 1642.6666666666667 149.3333333333334 1308.5333333333333 149.3333333333334 896S483.4666666666667 149.3333333333333 896 149.3333333333333S1642.6666666666667 483.4666666666667 1642.6666666666667 896S1308.5333333333333 1642.6666666666667 896 1642.6666666666667zM896 298.6666666666665C566.72 298.6666666666665 298.6666666666667 566.7199999999998 298.6666666666667 896S566.72 1493.3333333333333 896 1493.3333333333333S1493.3333333333335 1225.28 1493.3333333333335 896S1225.2800000000002 298.6666666666665 896 298.6666666666665z" />
|
|
64
|
+
<glyph glyph-name="circle-inner-circle"
|
|
65
|
+
unicode=""
|
|
66
|
+
horiz-adv-x="1792" d=" M896 1642.6666666666667C484.2133333333334 1642.6666666666667 149.3333333333334 1307.7866666666666 149.3333333333334 896S484.2133333333334 149.3333333333333 896 149.3333333333333S1642.6666666666667 484.2133333333331 1642.6666666666667 896S1307.7866666666669 1642.6666666666667 896 1642.6666666666667zM896 298.6666666666665C566.72 298.6666666666665 298.6666666666667 566.7199999999998 298.6666666666667 896S566.72 1493.3333333333333 896 1493.3333333333333S1493.3333333333335 1225.28 1493.3333333333335 896S1225.2800000000002 298.6666666666665 896 298.6666666666665zM1120 896C1120 772.4266666666666 1019.5733333333334 672 896 672S672 772.4266666666666 672 896S772.4266666666667 1120 896 1120S1120 1019.5733333333332 1120 896z" />
|
|
67
|
+
<glyph glyph-name="hd"
|
|
68
|
+
unicode=""
|
|
69
|
+
horiz-adv-x="1792" d=" M1418.6666666666667 1568H373.3333333333334C290.4533333333333 1568 224 1500.8 224 1418.6666666666665V373.3333333333333C224 291.1999999999998 290.4533333333334 224 373.3333333333334 224H1418.6666666666667C1500.8000000000002 224 1568 291.1999999999998 1568 373.3333333333333V1418.6666666666665C1568 1500.8 1500.8000000000002 1568 1418.6666666666667 1568zM821.3333333333334 672H709.3333333333334V821.3333333333333H560V672H448V1120H560V933.3333333333331H709.3333333333334V1120H821.3333333333334V672zM970.6666666666669 1120H1269.3333333333335C1310.4 1120 1344 1086.4 1344 1045.3333333333333V746.6666666666665C1344 705.5999999999999 1310.4 672 1269.3333333333335 672H970.6666666666669V1120zM1082.6666666666667 783.9999999999999H1232V1008H1082.6666666666667V783.9999999999999z" />
|
|
70
|
+
<glyph glyph-name="cancel"
|
|
71
|
+
unicode=""
|
|
72
|
+
horiz-adv-x="1792" d=" M896 1642.6666666666667C483.4666666666667 1642.6666666666667 149.3333333333334 1308.5333333333333 149.3333333333334 896S483.4666666666667 149.3333333333333 896 149.3333333333333S1642.6666666666667 483.4666666666667 1642.6666666666667 896S1308.5333333333333 1642.6666666666667 896 1642.6666666666667zM1269.3333333333335 628.3199999999999L1163.68 522.6666666666665L896 790.3466666666667L628.3199999999999 522.6666666666665L522.6666666666667 628.3199999999999L790.3466666666668 896L522.6666666666667 1163.68L628.3199999999999 1269.3333333333333L896 1001.6533333333332L1163.68 1269.3333333333333L1269.3333333333335 1163.68L1001.6533333333334 896L1269.3333333333335 628.3199999999999z" />
|
|
73
|
+
<glyph glyph-name="replay"
|
|
74
|
+
unicode=""
|
|
75
|
+
horiz-adv-x="1792" d=" M896 1418.6666666666665V1717.3333333333333L522.6666666666667 1344L896 970.6666666666666V1269.3333333333333C1143.52 1269.3333333333333 1344 1068.8533333333332 1344 821.3333333333333S1143.52 373.3333333333333 896 373.3333333333333S448 573.813333333333 448 821.3333333333333H298.6666666666667C298.6666666666667 491.3066666666664 565.9733333333334 224 896 224S1493.3333333333335 491.3066666666664 1493.3333333333335 821.3333333333333S1226.0266666666669 1418.6666666666665 896 1418.6666666666665z" />
|
|
76
|
+
<glyph glyph-name="play-previous"
|
|
77
|
+
unicode=""
|
|
78
|
+
horiz-adv-x="1792" d=" M448 1344H597.3333333333334V448H448zM709.3333333333334 896L1344 448V1344z" />
|
|
79
|
+
<glyph glyph-name="play-next"
|
|
80
|
+
unicode=""
|
|
81
|
+
horiz-adv-x="1792" d=" M448 448L1082.6666666666667 896L448 1344V448zM1194.6666666666667 1344V448H1344V1344H1194.6666666666667z" />
|
|
82
|
+
<glyph glyph-name="close"
|
|
83
|
+
unicode=""
|
|
84
|
+
horiz-adv-x="1792" d=" M1418.6666666666667 1313.0133333333333L1313.0133333333335 1418.6666666666665L896 1001.6533333333332L478.9866666666667 1418.6666666666665L373.3333333333334 1313.0133333333333L790.3466666666668 896L373.3333333333334 478.9866666666665L478.9866666666667 373.3333333333333L896 790.3466666666667L1313.0133333333335 373.3333333333333L1418.6666666666667 478.9866666666665L1001.6533333333334 896z" />
|
|
85
|
+
<glyph glyph-name="skip-10-min"
|
|
86
|
+
unicode=""
|
|
87
|
+
horiz-adv-x="1792" d=" M896 1418.6666666666665V1717.3333333333333L522.6666666666667 1344L896 970.6666666666666V1269.3333333333333C1142.4 1269.3333333333333 1344 1067.7333333333333 1344 821.3333333333333S1142.4 373.3333333333333 896 373.3333333333333S448 574.9333333333332 448 821.3333333333333H298.6666666666667C298.6666666666667 492.8 567.4666666666667 224 896 224S1493.3333333333335 492.8 1493.3333333333335 821.3333333333333S1224.5333333333333 1418.6666666666665 896 1418.6666666666665zM813.8666666666668 597.3333333333333H750.4000000000001V839.9999999999999L675.7333333333335 817.5999999999999V869.8666666666664L806.4000000000001 918.3999999999997H813.8666666666668V597.3333333333333zM1131.2 728C1131.2 705.5999999999999 1127.4666666666667 683.2 1123.7333333333333 668.2666666666667S1112.5333333333335 638.3999999999999 1101.3333333333335 627.1999999999998S1078.9333333333334 608.5333333333331 1067.7333333333333 601.0666666666666S1041.6000000000001 593.5999999999999 1022.9333333333336 593.5999999999999S993.0666666666668 597.3333333333333 978.1333333333336 601.0666666666666S952.0000000000002 615.9999999999998 944.5333333333336 627.1999999999998S925.866666666667 653.333333333333 922.1333333333336 668.2666666666667S914.6666666666669 705.5999999999999 914.6666666666669 728V783.9999999999999C914.6666666666669 806.4 918.4000000000002 828.8 922.1333333333336 843.7333333333333S933.3333333333334 873.6 944.5333333333336 884.8000000000001S966.9333333333336 903.4666666666666 978.1333333333336 910.9333333333334S1004.2666666666668 918.4 1022.9333333333336 918.4S1052.8000000000002 914.6666666666666 1067.7333333333333 910.9333333333334S1093.8666666666668 896.0000000000001 1101.3333333333335 884.8000000000001S1120 858.6666666666667 1123.7333333333333 843.7333333333333S1131.2 806.4 1131.2 783.9999999999999V728zM1071.4666666666667 791.4666666666666C1071.4666666666667 806.3999999999999 1071.4666666666667 817.5999999999999 1067.7333333333333 828.8S1064 847.4666666666666 1060.2666666666667 851.1999999999999S1052.8 862.4 1045.3333333333335 862.4S1034.1333333333334 866.1333333333333 1026.6666666666667 866.1333333333333S1011.7333333333333 866.1333333333333 1008.0000000000002 862.4S996.8 854.9333333333334 993.0666666666668 851.1999999999999S985.6000000000003 836.2666666666667 985.6000000000003 828.8S981.8666666666668 806.3999999999999 981.8666666666668 791.4666666666666V720.5333333333333C981.8666666666668 705.5999999999999 981.8666666666668 694.4000000000001 985.6000000000003 683.2S989.3333333333334 664.5333333333333 993.0666666666668 660.8S1000.5333333333334 649.5999999999999 1008.0000000000002 649.5999999999999S1019.2 645.8666666666666 1026.6666666666667 645.8666666666666S1041.6 645.8666666666666 1045.3333333333335 649.5999999999999S1056.5333333333335 657.0666666666666 1060.2666666666667 660.8S1067.7333333333333 675.7333333333331 1067.7333333333333 683.2S1071.4666666666667 705.5999999999999 1071.4666666666667 720.5333333333333V791.4666666666666z" />
|
|
88
|
+
<glyph glyph-name="skip-10-plus"
|
|
89
|
+
unicode=""
|
|
90
|
+
horiz-adv-x="1792" d=" M298.6666666666667 821.3333333333333C298.6666666666667 492.8 567.4666666666667 224 896 224S1493.3333333333335 492.8 1493.3333333333335 821.3333333333333H1344C1344 574.9333333333332 1142.4 373.3333333333333 896 373.3333333333333S448 574.9333333333332 448 821.3333333333333S649.6 1269.3333333333333 896 1269.3333333333333V970.6666666666666L1269.3333333333335 1344L896 1717.3333333333333V1418.6666666666665C567.4666666666667 1418.6666666666665 298.6666666666667 1149.8666666666668 298.6666666666667 821.3333333333333zM810.1333333333333 597.3333333333333H746.6666666666667V839.9999999999999L672 817.5999999999999V869.8666666666664L802.6666666666667 918.3999999999997H810.1333333333333V597.3333333333333zM1127.4666666666667 728C1127.4666666666667 705.5999999999999 1123.7333333333333 683.2 1120 668.2666666666667S1108.8 638.3999999999999 1097.6 627.1999999999998S1075.2 608.5333333333331 1064 601.0666666666666S1037.8666666666668 593.5999999999999 1019.2 593.5999999999999S989.3333333333334 597.3333333333333 974.4 601.0666666666666S948.2666666666668 615.9999999999998 940.8000000000002 627.1999999999998S922.1333333333336 653.333333333333 918.4 668.2666666666667S910.9333333333336 705.5999999999999 910.9333333333336 728V783.9999999999999C910.9333333333336 806.4 914.6666666666669 828.8 918.4 843.7333333333333S929.6000000000003 873.6 940.8000000000002 884.8000000000001S963.2000000000002 903.4666666666666 974.4 910.9333333333334S1000.5333333333334 918.4 1019.2 918.4S1049.0666666666668 914.6666666666666 1064 910.9333333333334S1090.1333333333334 896.0000000000001 1097.6 884.8000000000001S1116.2666666666667 858.6666666666667 1120 843.7333333333333S1127.4666666666667 806.4 1127.4666666666667 783.9999999999999V728zM1064 791.4666666666666C1064 806.3999999999999 1064 817.5999999999999 1060.2666666666667 828.8S1056.5333333333333 847.4666666666666 1052.8 851.1999999999999S1045.3333333333335 862.4 1037.8666666666668 862.4S1026.6666666666667 866.1333333333333 1019.2 866.1333333333333S1004.2666666666668 866.1333333333333 1000.5333333333334 862.4S989.3333333333334 854.9333333333334 985.6000000000003 851.1999999999999S978.1333333333336 836.2666666666667 978.1333333333336 828.8S974.4 806.3999999999999 974.4 791.4666666666666V720.5333333333333C974.4 705.5999999999999 974.4 694.4000000000001 978.1333333333336 683.2S981.866666666667 664.5333333333333 985.6000000000003 660.8S993.0666666666668 649.5999999999999 1000.5333333333334 649.5999999999999S1011.7333333333333 645.8666666666666 1019.2 645.8666666666666S1034.1333333333334 645.8666666666666 1037.8666666666668 649.5999999999999S1049.0666666666668 657.0666666666666 1052.8 660.8S1060.2666666666667 675.7333333333331 1060.2666666666667 683.2S1064 705.5999999999999 1064 720.5333333333333V791.4666666666666z" />
|
|
91
|
+
<glyph glyph-name="facebook"
|
|
92
|
+
unicode=""
|
|
93
|
+
horiz-adv-x="1792" d=" M1343 1780V1516H1186Q1100 1516 1070 1480T1040 1372V1183H1333L1294 887H1040V128H734V887H479V1183H734V1401Q734 1587 838 1689.5T1115 1792Q1262 1792 1343 1780z" />
|
|
94
|
+
<glyph glyph-name="gplus"
|
|
95
|
+
unicode=""
|
|
96
|
+
horiz-adv-x="1792" d=" M799 996Q799 960 831 925.5T908.5 857.5T999 784T1076 680T1108 538Q1108 448 1060 365Q988 243 849 185.5T551 128Q419 128 304.5 169.5T133 307Q96 367 96 438Q96 519 140.5 588T259 703Q390 785 663 803Q631 845 615.5 877T600 950Q600 986 621 1035Q575 1031 553 1031Q405 1031 303.5 1127.5T202 1372Q202 1454 238 1531T337 1662Q414 1728 519.5 1760T737 1792H1155L1017 1704H886Q960 1641 998 1571T1036 1411Q1036 1339 1011.5 1281.5T952.5 1188.5T883 1123.5T823.5 1062T799 996zM653 1092Q691 1092 731 1108.5T797 1152Q850 1209 850 1311Q850 1369 833 1436T784.5 1565.5T700 1669T583 1710Q541 1710 500.5 1690.5T435 1638Q388 1579 388 1478Q388 1432 398 1380.5T429.5 1277.5T481.5 1185T556.5 1118T653 1092zM655 219Q713 219 766.5 232T865.5 271T938.5 344T966 453Q966 478 959 502T944.5 544T917.5 585.5T888 620.5T849.5 655T813 684T771.5 714T735 740Q719 742 687 742Q634 742 582 735T474.5 710T377.5 664T309 589.5T282 484Q282 414 317 360.5T408.5 277.5T527.5 233.5T655 219zM1465 1095H1678V987H1465V768H1360V987H1148V1095H1360V1312H1465V1095z" />
|
|
97
|
+
<glyph glyph-name="linkedin"
|
|
98
|
+
unicode=""
|
|
99
|
+
horiz-adv-x="1792" d=" M477 1167V176H147V1167H477zM498 1473Q499 1400 447.5 1351T312 1302H310Q228 1302 178 1351T128 1473Q128 1547 179.5 1595.5T314 1644T447 1595.5T498 1473zM1664 744V176H1335V706Q1335 811 1294.5 870.5T1168 930Q1105 930 1062.5 895.5T999 810Q988 780 988 729V176H659Q661 575 661 823T660 1119L659 1167H988V1023H986Q1006 1055 1027 1079T1083.5 1131T1170.5 1174.5T1285 1190Q1456 1190 1560 1076.5T1664 744z" />
|
|
100
|
+
<glyph glyph-name="twitter"
|
|
101
|
+
unicode=""
|
|
102
|
+
horiz-adv-x="1792" d=" M1684 1384Q1617 1286 1522 1217Q1523 1203 1523 1175Q1523 1045 1485 915.5T1369.5 667T1185 456.5T927 310.5T604 256Q333 256 108 401Q143 397 186 397Q411 397 587 535Q482 537 399 599.5T285 759Q318 754 346 754Q389 754 431 765Q319 788 245.5 876.5T172 1082V1086Q240 1048 318 1045Q252 1089 213 1160T174 1314Q174 1402 218 1477Q339 1328 512.5 1238.5T884 1139Q876 1177 876 1213Q876 1347 970.5 1441.5T1199 1536Q1339 1536 1435 1434Q1544 1455 1640 1512Q1603 1397 1498 1334Q1591 1344 1684 1384z" />
|
|
103
|
+
<glyph glyph-name="tumblr"
|
|
104
|
+
unicode=""
|
|
105
|
+
horiz-adv-x="1792" d=" M1328 463L1408 226Q1385 191 1297 160T1120 128Q1016 126 929.5 154T787 228T692 334T636.5 454T620 572V1116H452V1331Q524 1357 581 1400.5T672 1490.5T730 1592.5T764 1691.5T779 1780Q780 1785 783.5 1788.5T791 1792H1035V1368H1368V1116H1034V598Q1034 568 1040.5 542T1063 489.5T1112.5 448T1194 434Q1272 436 1328 463z" />
|
|
106
|
+
<glyph glyph-name="pinterest"
|
|
107
|
+
unicode=""
|
|
108
|
+
horiz-adv-x="1792" d=" M1664 896Q1664 687 1561 510.5T1281.5 231T896 128Q785 128 678 160Q737 253 756 324Q765 358 810 535Q830 496 883 467.5T997 439Q1118 439 1213 507.5T1360 696T1412 966Q1412 1080 1352.5 1180T1180 1343T925 1406Q820 1406 729 1377T574.5 1300T465.5 1189.5T398.5 1060T377 926Q377 822 417 743T534 632Q564 620 572 652Q574 659 580 683T588 713Q594 736 577 756Q526 817 526 907Q526 1058 630.5 1166.5T904 1275Q1055 1275 1139.5 1193T1224 980Q1224 810 1155.5 691T980 572Q919 572 882 615.5T859 720Q867 755 885.5 813.5T915.5 916.5T927 992Q927 1042 900 1075T823 1108Q761 1108 718 1051T675 909Q675 836 700 787L601 369Q584 299 588 192Q382 283 255 473T128 896Q128 1105 231 1281.5T510.5 1561T896 1664T1281.5 1561T1561 1281.5T1664 896z" />
|
|
109
|
+
<glyph glyph-name="audio-description"
|
|
110
|
+
unicode=""
|
|
111
|
+
horiz-adv-x="1792" d=" M795.5138904615 457.270933L795.5138904615 1221.5248286325C971.84576475 1225.085121904 1107.39330415 1232.12360523 1207.223857 1161.5835220499998C1303.033991 1093.8857027 1377.7922305 962.20560625 1364.3373135 792.9476205000001C1350.102593 613.9029365000001 1219.6655764999998 463.4600215 1050.12389545 448.2843645000001C965.8259268 440.7398275000001 798.21890505 448.2843645000001 798.21890505 448.2843645000001C798.21890505 448.2843645000001 795.2791410655 453.016494 795.5138904615 457.270933M966.1564647 649.0863960000001C1076.16084135 644.6767075 1152.385591 707.3020429999999 1163.8910079999998 807.9351875C1179.2994744999999 942.71878505 1089.73043585 1030.3691748 960.74508635 1020.7227954L960.74508635 658.08043C960.6196169500002 652.9482330000001 962.7606933 650.3134680000001 966.1564647 649.0863960000001 M1343.2299685 457.3517725000002C1389.9059734 444.3690160000001 1404.0840274999998 496.0596970000001 1424.48294065 532.2791494999999C1469.0084255 611.2788500000001 1502.5101322 712.8584189999999 1503.0416912 828.9881705C1503.8147453000001 995.5680973 1438.8404296 1117.7973688000002 1378.4383305 1200.62456881045L1348.652139905 1200.62456881045C1346.6001063899998 1187.06858424 1356.44474056 1175.024791325 1362.18395859 1164.6588891000001C1408.2649952 1081.49431985 1450.96645015 966.7230041 1451.57490975 834.9817034999999C1452.27106325 683.8655425000002 1402.00636065 557.5072264999999 1343.2299685 457.3517725000002 M1488.0379675 457.3517725000002C1534.7139723999999 444.3690160000001 1548.8825828 496.0671625 1569.29093965 532.2791494999999C1613.8164245 611.2788500000001 1647.3113856500001 712.8584189999999 1647.8496902000002 828.9881705C1648.6227442999998 995.5680973 1583.6484286 1117.7973688000002 1523.2463295 1200.62456881045L1493.460138905 1200.62456881045C1491.40810539 1187.06858424 1501.250041305 1175.021805755 1506.9919575899999 1164.6588891000001C1553.0729942 1081.49431985 1595.7757984 966.7230041 1596.3829087499998 834.9817034999999C1597.07906225 683.8655425000002 1546.8143596500001 557.5072264999999 1488.0379675 457.3517725000002 M1631.9130380000001 457.3517725000002C1678.5890429 444.3690160000001 1692.7576533 496.0671625 1713.1660101500001 532.2791494999999C1757.691495 611.2788500000001 1791.1864561500001 712.8584189999999 1791.7247607000002 828.9881705C1792.4978148 995.5680973 1727.5234991000002 1117.7973688000002 1667.1214 1200.62456881045L1637.3352094050001 1200.62456881045C1635.28317589 1187.06858424 1645.1251118050002 1175.02329854 1650.86702809 1164.6588891000001C1696.9480647 1081.49431985 1739.64951965 966.7230041 1740.25797925 834.9817034999999C1740.95413275 683.8655425000002 1690.6894301500001 557.5072264999999 1631.9130380000001 457.3517725000002 M15.66796875 451.481947L254.03034755 451.481947L319.0356932 551.1747990000001L543.6261075 551.6487970000001C543.6261075 551.6487970000001 543.8541115 483.7032095 543.8541115 451.481947L714.4993835 451.481947L714.4993835 1230.9210795L508.643051 1230.9210795C488.8579955 1197.5411595 15.66796875 451.481947 15.66796875 451.481947L15.66796875 451.481947zM550.0048155000001 959.9708615L550.0048155000001 710.916297L408.4199 711.8642895L550.0048155000001 959.9708615L550.0048155000001 959.9708615z" />
|
|
112
|
+
<glyph glyph-name="audio"
|
|
113
|
+
unicode=""
|
|
114
|
+
horiz-adv-x="1792" d=" M896 1717.3333333333333C524.9066666666668 1717.3333333333333 224 1416.4266666666667 224 1045.3333333333333V522.6666666666665C224 399.0933333333333 324.4266666666667 298.6666666666665 448 298.6666666666665H672V896H373.3333333333334V1045.3333333333333C373.3333333333334 1333.92 607.4133333333334 1568 896 1568S1418.6666666666667 1333.92 1418.6666666666667 1045.3333333333333V896H1120V298.6666666666665H1344C1467.5733333333335 298.6666666666665 1568 399.0933333333333 1568 522.6666666666665V1045.3333333333333C1568 1416.4266666666667 1267.0933333333332 1717.3333333333333 896 1717.3333333333333z" />
|
|
115
|
+
<glyph glyph-name="cart"
|
|
116
|
+
unicode=""
|
|
117
|
+
horiz-adv-x="1792" d=" M522.6666666666667 448C440.16 448 374.08 381.1733333333332 374.08 298.6666666666665S440.16 149.3333333333333 522.6666666666667 149.3333333333333S672 216.1599999999999 672 298.6666666666665S605.1733333333334 448 522.6666666666667 448zM74.6666666666667 1642.6666666666667V1493.3333333333333H224L492.4266666666667 926.9866666666666L391.6266666666668 744.0533333333333C380.0533333333334 722.4000000000001 373.3333333333335 698.1333333333332 373.3333333333335 672C373.3333333333335 589.4933333333331 440.1600000000002 522.6666666666665 522.6666666666667 522.6666666666665H1418.6666666666667V672H554.4C543.9466666666667 672 535.7333333333333 680.2133333333331 535.7333333333333 690.6666666666665C535.7333333333333 694.0266666666666 536.48 697.0133333333333 537.9733333333334 699.6266666666666L604.8000000000001 821.3333333333333H1161.0666666666668C1217.0666666666668 821.3333333333333 1265.9733333333336 852.3199999999998 1291.7333333333336 898.2399999999999L1558.6666666666667 1382.8266666666666C1564.6399999999999 1393.28 1568 1405.6 1568 1418.6666666666665C1568 1460.1066666666666 1534.4 1493.3333333333333 1493.3333333333335 1493.3333333333333H389.3866666666667L318.4533333333333 1642.6666666666667H74.6666666666667zM1269.3333333333335 448C1186.8266666666666 448 1120.7466666666667 381.1733333333332 1120.7466666666667 298.6666666666665S1186.8266666666666 149.3333333333333 1269.3333333333335 149.3333333333333S1418.6666666666667 216.1599999999999 1418.6666666666667 298.6666666666665S1351.8400000000001 448 1269.3333333333335 448z" />
|
|
118
|
+
</font>
|
|
119
|
+
</defs>
|
|
120
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"font-name": "VideoJS",
|
|
3
|
+
"root-dir": "./node_modules/material-design-icons/",
|
|
4
|
+
"icons": [{
|
|
5
|
+
"name": "play",
|
|
6
|
+
"svg": "av/svg/production/ic_play_arrow_48px.svg"
|
|
7
|
+
}, {
|
|
8
|
+
"name": "play-circle",
|
|
9
|
+
"svg": "av/svg/production/ic_play_circle_outline_48px.svg"
|
|
10
|
+
}, {
|
|
11
|
+
"name": "pause",
|
|
12
|
+
"svg": "av/svg/production/ic_pause_48px.svg"
|
|
13
|
+
}, {
|
|
14
|
+
"name": "volume-mute",
|
|
15
|
+
"svg": "av/svg/production/ic_volume_off_48px.svg"
|
|
16
|
+
}, {
|
|
17
|
+
"name": "volume-low",
|
|
18
|
+
"svg": "av/svg/production/ic_volume_mute_48px.svg"
|
|
19
|
+
}, {
|
|
20
|
+
"name": "volume-mid",
|
|
21
|
+
"svg": "av/svg/production/ic_volume_down_48px.svg"
|
|
22
|
+
}, {
|
|
23
|
+
"name": "volume-high",
|
|
24
|
+
"svg": "av/svg/production/ic_volume_up_48px.svg"
|
|
25
|
+
}, {
|
|
26
|
+
"name": "fullscreen-enter",
|
|
27
|
+
"svg": "navigation/svg/production/ic_fullscreen_48px.svg"
|
|
28
|
+
}, {
|
|
29
|
+
"name": "fullscreen-exit",
|
|
30
|
+
"svg": "navigation/svg/production/ic_fullscreen_exit_48px.svg"
|
|
31
|
+
}, {
|
|
32
|
+
"name": "square",
|
|
33
|
+
"svg": "image/svg/production/ic_crop_square_48px.svg"
|
|
34
|
+
}, {
|
|
35
|
+
"name": "spinner",
|
|
36
|
+
"svg": "image/svg/production/ic_camera_48px.svg"
|
|
37
|
+
}, {
|
|
38
|
+
"name": "subtitles",
|
|
39
|
+
"svg": "av/svg/production/ic_subtitles_48px.svg"
|
|
40
|
+
}, {
|
|
41
|
+
"name": "captions",
|
|
42
|
+
"svg": "av/svg/production/ic_closed_caption_48px.svg"
|
|
43
|
+
}, {
|
|
44
|
+
"name": "chapters",
|
|
45
|
+
"svg": "action/svg/production/ic_list_48px.svg"
|
|
46
|
+
}, {
|
|
47
|
+
"name": "share",
|
|
48
|
+
"svg": "social/svg/production/ic_share_48px.svg"
|
|
49
|
+
}, {
|
|
50
|
+
"name": "cog",
|
|
51
|
+
"svg": "action/svg/production/ic_settings_48px.svg"
|
|
52
|
+
}, {
|
|
53
|
+
"name": "circle",
|
|
54
|
+
"svg": "image/svg/production/ic_brightness_1_48px.svg"
|
|
55
|
+
}, {
|
|
56
|
+
"name": "circle-outline",
|
|
57
|
+
"svg": "image/svg/production/ic_panorama_fish_eye_48px.svg"
|
|
58
|
+
}, {
|
|
59
|
+
"name": "circle-inner-circle",
|
|
60
|
+
"svg": "image/svg/production/ic_adjust_48px.svg"
|
|
61
|
+
}, {
|
|
62
|
+
"name": "hd",
|
|
63
|
+
"svg": "av/svg/production/ic_hd_24px.svg"
|
|
64
|
+
}, {
|
|
65
|
+
"name": "cancel",
|
|
66
|
+
"svg": "navigation/svg/production/ic_cancel_48px.svg"
|
|
67
|
+
}, {
|
|
68
|
+
"name": "replay",
|
|
69
|
+
"svg": "av/svg/production/ic_replay_48px.svg"
|
|
70
|
+
}, {
|
|
71
|
+
"name": "play-previous",
|
|
72
|
+
"svg": "av/svg/production/ic_skip_previous_48px.svg"
|
|
73
|
+
}, {
|
|
74
|
+
"name": "play-next",
|
|
75
|
+
"svg": "av/svg/production/ic_skip_next_48px.svg"
|
|
76
|
+
}, {
|
|
77
|
+
"name": "close",
|
|
78
|
+
"svg": "navigation/svg/production/ic_close_48px.svg"
|
|
79
|
+
}, {
|
|
80
|
+
"name": "skip-10-min",
|
|
81
|
+
"svg": "av/svg/production/ic_replay_10_48px.svg"
|
|
82
|
+
}, {
|
|
83
|
+
"name": "skip-10-plus",
|
|
84
|
+
"svg": "av/svg/production/ic_forward_10_48px.svg"
|
|
85
|
+
}, {
|
|
86
|
+
"name": "facebook",
|
|
87
|
+
"svg": "facebook.svg",
|
|
88
|
+
"root-dir": "./custom-icons/fontawesome/"
|
|
89
|
+
}, {
|
|
90
|
+
"name": "gplus",
|
|
91
|
+
"svg": "gplus.svg",
|
|
92
|
+
"root-dir": "./custom-icons/fontawesome/"
|
|
93
|
+
}, {
|
|
94
|
+
"name": "linkedin",
|
|
95
|
+
"svg": "linkedin.svg",
|
|
96
|
+
"root-dir": "./custom-icons/fontawesome/"
|
|
97
|
+
}, {
|
|
98
|
+
"name": "twitter",
|
|
99
|
+
"svg": "twitter.svg",
|
|
100
|
+
"root-dir": "./custom-icons/fontawesome/"
|
|
101
|
+
}, {
|
|
102
|
+
"name": "tumblr",
|
|
103
|
+
"svg": "tumblr.svg",
|
|
104
|
+
"root-dir": "./custom-icons/fontawesome/"
|
|
105
|
+
}, {
|
|
106
|
+
"name": "pinterest",
|
|
107
|
+
"svg": "pinterest.svg",
|
|
108
|
+
"root-dir": "./custom-icons/fontawesome/"
|
|
109
|
+
}, {
|
|
110
|
+
"name": "audio-description",
|
|
111
|
+
"svg": "audio-description.svg",
|
|
112
|
+
"root-dir": "./custom-icons/"
|
|
113
|
+
}, {
|
|
114
|
+
"name": "audio",
|
|
115
|
+
"svg": "hardware/svg/production/ic_headset_48px.svg"
|
|
116
|
+
}, {
|
|
117
|
+
"name": "cart",
|
|
118
|
+
"svg": "action/svg/production/ic_shopping_cart_48px.svg"
|
|
119
|
+
}]
|
|
120
|
+
}
|