Jiye Kim
Jiye Kim
@arulkumararul2000 You can add styles including font size to the .vtt file as below code. ``` WEBVTT STYLE ::cue { font-size: 120% } 00:00:00.000 --> 00:00:02.000 This is a subtitle...
@arulkumararul2000 Have you tried absolute font size such as `font-size: 100px;` ? Maybe you can refer to https://developer.mozilla.org/en-US/docs/Web/API/WebVTT_API#styling_webvtt_cues page about styling vtt subtitles.
@arulkumararul2000 If you are working with our `pattern-video-player-custom` sample, please try this. ``` // src/App/App.module.less .app { video::cue { font-size: 20%; } } ``` `::cue` pseudo-element is supported on all...
Travis error occurs because https://github.com/enactjs/enact/pull/3233 is not merged.
Hello @arulkumararul2000, Thank you for your report. I will check this issue and let you know the result soon.
Hello, @arulkumararul2000. I made a video player sample that plays a google video ad: https://github.com/enactjs/samples/pull/236 This sample follows google IMA SDK tutorial and is adjusted to Enact video player. To...
Hello, @officialmmt Could you please write more detail of what you make? I want to know what are the features "like VLC player".
@officialmmt , We have a sample app pattern which supports m3u8 video type and subtitles in Enact Sandstone video player: https://github.com/enactjs/samples/tree/develop/sandstone/pattern-video-player-custom This sample demonstrates how to add and play custom...
@officialmmt hls.js docs has explanations about audio&subtitle tracks control API. https://github.com/video-dev/hls.js/blob/master/docs/API.md#audio-tracks-control-api https://github.com/video-dev/hls.js/blob/master/docs/API.md#subtitle-tracks-control-api Have you tried these APIs? If so, can you tell me what was the problem when you tried...
Close this issue as inactive