Open
Description
Here is the sample code
videoPlayer.concat({
manifests: [{
url: introVideo,
mimeType: 'application/x-mpegURL'
},{
url: url,
mimeType: 'application/x-mpegURL'
}],
targetVerticalResolution: 720,
callback: (err, result) => {
if (err) {
console.error(err);
return;
}
videoPlayer.src({
src: `data:application/vnd.videojs.vhs+json,${JSON.stringify(result.manifestObject)}`,
type: 'application/vnd.videojs.vhs+json'
});
}
});
It is showing error no compatible source was found for this media