0

I recently added jwplayer to my site. I added video with subtitles. But when we do full screen subtitles are too low almost at the bottom. Is there anyway i can adjust it to appear higher.

Here my code:

<div id="myElement">Loading the player ...</div>
<script type="text/javascript">
    jwplayer("myElement").setup({
        file: "/sample.mp4",
        height: 420,
        width: 950,
        tracks: [{ 
            file: "/sample.srt", 
            label: "English",
            kind: "captions",
            "default": true }]
    });
</script> 

1 Answers1

0

This solution will work for HTML5, I am not sure about flash though.

check this out show-subtitle-outside-of-player

You need to catch the caption div and override the css

Community
  • 1
  • 1
Hitesh
  • 4,098
  • 11
  • 44
  • 82