-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(FEC-11547): The thumbnalils images should be relative to the VTT …
…file adress by default (#607) Currently the thumbnalils images URL is relative to the application domain by default, Although the convention is that they should be relative to the vtt file adress solves: FEC-11547 related pr: kaltura/kaltura-player-js#494
- Loading branch information
1 parent
23f9247
commit 989a2c0
Showing
6 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
// @flow | ||
declare type PKExternalThumbnailsConfig = { | ||
imgBaseUrl?: string, | ||
vttUrl: string | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
WEBVTT | ||
00:00:00.000 --> 00:00:05.000 | ||
base/test/src/assets/00000002.jpg | ||
00000002.jpg | ||
|
||
00:00:05.000 --> 00:00:10.000 | ||
base/test/src/assets/00000003.jpg | ||
00000003.jpg | ||
|
||
00:00:10.000 --> 00:00:15.000 | ||
base/test/src/assets/00000004.jpg | ||
00000004.jpg | ||
|
||
00:00:15.000 --> 00:00:20.000 | ||
base/test/src/assets/00000005.jpg | ||
00000005.jpg | ||
|
||
00:00:20.000 --> 00:00:25.000 | ||
base/test/src/assets/00000006.jpg | ||
00000006.jpg | ||
|
||
00:00:25.000 --> 00:00:30.000 | ||
base/test/src/assets/00000007.jpg | ||
|
||
00000007.jpg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
WEBVTT | ||
00:00.000 --> 00:05.000 | ||
base/test/src/assets/00000002.jpg#wh=200,80 | ||
00000002.jpg#wh=200,80 | ||
|
||
00:05.000 --> 00:10.000 | ||
base/test/src/assets/00000003.jpg#wh=200,80 | ||
00000003.jpg#wh=200,80 | ||
|
||
00:10.000 --> 00:15.000 | ||
base/test/src/assets/00000004.jpg#wh=200,80 | ||
00000004.jpg#wh=200,80 | ||
|
||
00:15.000 --> 00:20.000 | ||
base/test/src/assets/00000005.jpg#wh=200,80 | ||
00000005.jpg#wh=200,80 | ||
|
||
00:20.000 --> 00:25.000 | ||
base/test/src/assets/00000006.jpg#wh=200,80 | ||
|
||
|
||
|
||
|
||
|
||
00000006.jpg#wh=200,80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters