-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(videoJs): implement videoJs to story video #1068
Conversation
@@ -1,4 +1,12 @@ | |||
[ | |||
{ | |||
"id": "debug", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debug story will be removed once all video features are done, i'm splitting it up in multiple PRs :D
@@ -0,0 +1,192 @@ | |||
WEBVTT blah |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blah? :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haha, the whole debug story will be deleted later. It's just for testing :D
import videojs, {VideoJsPlayerOptions} from 'video.js'; | ||
import {getStoryAssetUrl} from '../../../libs/get-story-asset-urls'; | ||
|
||
import {Language} from '../../../types/language'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer to also indicate with the import that this is a type.
import {Language} from '../../../types/language'; | |
import type {Language} from '../../../types/language'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh ok, than its fine i guess 🤷 :D
* feat(videoJs): implement videoJs to story video * refactor(video): add poster
No description provided.