With the new Vimeo embed features, subtitles as video text tracks is able to be obtained and selected.
<div class="flex w-full h-auto my-auto">
<div id="subtitles" class=""></div>
</div>
<script type="text/javascript">
var player = jwplayer("subtitles").setup({
"aspectratio": "16:9",
"playbackRateControls": true,
"sources": [
{
"file": "https://vimeo.com/76979871",
"type": "vimeo"
}
],
"vimeo": {
"pro": true,
"subtitles": true
},
"width": "100%"
});
</script>