Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Captions


The caption does not work, I tried:
jwplayer("mediaplayer").setup({
file: "../Video/when.mp4",
image: "../Content/images/when.png",
tracks: [{
file: "/Video/when.srt"
}]
,
captions: {
color: '#FF0000',
fontSize: 24,
backgroundOpacity: 50
}
});
and also tried:
jwplayer("mediaplayer").setup({
playlist: [{
file: "../Video/when.mp4",
image: "../Content/images/when.png",
tracks: [{
file: '../Video/when.vtt',
label: "English",
kind: "captions",
"default": true
},{
file: '../Video/when.srt',
kind: "captions",
label: "French"
}]
}]
});

2 Community Answers

admin

User  
0 rated :

The problem was MIME type, I had to add the following to web.config: <mimeMap fileExtension=".srt" mimeType="text/plain" />.

Ethan Feldman

JW Player Support Agent  
0 rated :

Glad you got it working!

This question has received the maximum number of answers.