Skip to content

Commit e0e803e

Browse files
github-actions[bot]tsiShayLevicloudinary-jenkins
authored
feat: support srt subtitle format (#743)
fix: update dependencies (#746) feat: light esm build (#765) --------- Co-authored-by: Tsachi Shlidor <[email protected]> Co-authored-by: ShayLevi <[email protected]> Co-authored-by: cloudinary-jenkins <[email protected]>
1 parent 69dceed commit e0e803e

File tree

64 files changed

+3882
-4631
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3882
-4631
lines changed

CHANGELOG-edge.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [2.2.1-edge.2](https://github.com/cloudinary/cloudinary-video-player/compare/v2.2.1-edge.1...v2.2.1-edge.2) (2024-12-26)
4+
5+
6+
### Features
7+
8+
* light esm build ([#765](https://github.com/cloudinary/cloudinary-video-player/issues/765)) ([0049fb9](https://github.com/cloudinary/cloudinary-video-player/commit/0049fb90cf9702cfb82b48c6911bedd319835dc8))
9+
10+
## [2.2.1-edge.1](https://github.com/cloudinary/cloudinary-video-player/compare/v2.2.1-edge.0...v2.2.1-edge.1) (2024-12-18)
11+
12+
13+
### Bug Fixes
14+
15+
* seek-thumbs positioning ([#766](https://github.com/cloudinary/cloudinary-video-player/issues/766)) ([5a16f74](https://github.com/cloudinary/cloudinary-video-player/commit/5a16f74b66e84f7aab9000a5adc752e843a43280))
16+
17+
## [2.2.1-edge.0](https://github.com/cloudinary/cloudinary-video-player/compare/v2.2.0-edge.5...v2.2.1-edge.0) (2024-12-09)
18+
19+
20+
### Bug Fixes
21+
22+
* update dependencies ([#746](https://github.com/cloudinary/cloudinary-video-player/issues/746)) ([1ac07ea](https://github.com/cloudinary/cloudinary-video-player/commit/1ac07eaecb92c3bacb9bafb68d90c983156ff314))
23+
324
## [2.1.2-edge.5](https://github.com/cloudinary/cloudinary-video-player/compare/v2.1.2-edge.4...v2.1.2-edge.5) (2024-12-08)
425

526

docs/es-modules/all.html

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Cloudinary Video Player</title>
6+
<link
7+
href="https://res.cloudinary.com/cloudinary-marketing/image/upload/f_auto,q_auto/c_scale,w_32,e_hue:290/creative_staging/cloudinary_internal/Website/Brand%20Updates/Favicon/cloudinary_web_favicon_192x192.png"
8+
rel="icon"
9+
type="image/png"
10+
/>
11+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
12+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
13+
</head>
14+
<body>
15+
<div class="container p-4 col-12 col-md-9 col-xl-6">
16+
<nav class="nav mb-2">
17+
<a href="/index.html">&#60;&#60; Back to examples index</a>
18+
</nav>
19+
<h1>Cloudinary Video Player</h1>
20+
<h3 class="mb-4"><code>/all</code> build</h3>
21+
22+
<p>Using the <code>/all</code> build, you get a build that already includes all plugins (except the big <code>/dash</code> plugin), saving you the need to import them separately</p>
23+
24+
<video
25+
id="player"
26+
class="cld-video-player cld-fluid"
27+
crossorigin="anonymous"
28+
controls
29+
muted
30+
playsinline
31+
></video>
32+
33+
<p class="mt-4">
34+
<a href="https://cloudinary.com/documentation/cloudinary_video_player#installation"
35+
>Full documentation</a
36+
>
37+
</p>
38+
</div>
39+
40+
<script type="module">
41+
import { videoPlayer } from 'cloudinary-video-player/all';
42+
import 'cloudinary-video-player/cld-video-player.min.css';
43+
44+
const player = videoPlayer('player', {
45+
cloudName: 'demo',
46+
publicId: 'dog',
47+
autoplay: true,
48+
chapters: {
49+
0: 'Chapter I',
50+
3: 'Chapter II',
51+
8: 'Chapter III',
52+
}
53+
});
54+
</script>
55+
56+
<!-- Bootstrap -->
57+
<link
58+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
59+
rel="stylesheet"
60+
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
61+
crossorigin="anonymous"
62+
/>
63+
</body>
64+
</html>

docs/es-modules/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ <h3 class="mt-4">Code examples:</h3>
7575
<li><a href="./ui-config.html">UI Config</a></li>
7676
<li><a href="./vast-vpaid.html">VAST & VPAID Support</a></li>
7777
<li><a href="./360.html">VR/360 Videos</a></li>
78+
<hr>
79+
<li><a href="./all.html"><code>/all</code> build</a></li>
80+
<li><a href="./light.html"><code>/light</code> build</a></li>
7881
</ul>
7982
</div>
8083
</body>

docs/es-modules/light.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Cloudinary Video Player</title>
6+
<link
7+
href="https://res.cloudinary.com/cloudinary-marketing/image/upload/f_auto,q_auto/c_scale,w_32,e_hue:290/creative_staging/cloudinary_internal/Website/Brand%20Updates/Favicon/cloudinary_web_favicon_192x192.png"
8+
rel="icon"
9+
type="image/png"
10+
/>
11+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
12+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
13+
</head>
14+
<body>
15+
<div class="container p-4 col-12 col-md-9 col-xl-6">
16+
<nav class="nav mb-2">
17+
<a href="/index.html">&#60;&#60; Back to examples index</a>
18+
</nav>
19+
<h1>Cloudinary Video Player</h1>
20+
<h3 class="mb-4"><code>/light</code> build</h3>
21+
22+
<p>Using the <code>/light</code> build gives you the smallest possible bundle-size</p>
23+
24+
<video
25+
id="player"
26+
class="cld-video-player cld-fluid"
27+
crossorigin="anonymous"
28+
controls
29+
muted
30+
playsinline
31+
></video>
32+
33+
<p class="mt-4">
34+
<a href="https://cloudinary.com/documentation/cloudinary_video_player#installation"
35+
>Full documentation</a
36+
>
37+
</p>
38+
</div>
39+
40+
<script type="module">
41+
import { videoPlayer } from 'cloudinary-video-player/light';
42+
import 'cloudinary-video-player/light/chapters';
43+
import 'cloudinary-video-player/cld-video-player.min.css';
44+
45+
const player = videoPlayer('player', {
46+
cloudName: 'demo',
47+
publicId: 'dog',
48+
autoplay: true,
49+
chapters: {
50+
0: 'Chapter I',
51+
3: 'Chapter II',
52+
8: 'Chapter III',
53+
}
54+
});
55+
</script>
56+
57+
<!-- Bootstrap -->
58+
<link
59+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
60+
rel="stylesheet"
61+
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
62+
crossorigin="anonymous"
63+
/>
64+
</body>
65+
</html>

0 commit comments

Comments
 (0)