我正在尝试将字幕与Samsung Tizen TV angularjs应用上的视频同步。
我使用此功能打开外部字幕。
var downloadRequest = new tizen.DownloadRequest('http://example.com/subtitles.srt', "wgt-private-tmp");
tizen.download.start(downloadRequest, {
oncompleted: function(downloadId, fullPath) {
webapis.avplay.setExternalSubtitlePath(fullPath);
},
onfailed: function(error) {
console.log('Failed to download Subtitle');
}
});
一切正常。
当我在视频中向前或向后移动时,会出现同步问题。我尝试将其与webapis.avplay.setSubtitlePosition(webapis.avplay.getCurrentTime())
功能同步,但字幕从头开始。