HLS Fairplay DRM Content videojs return Failed to load resource: Origin https:// is not allowed by Access-Control-Allow-Origin. when trying to get licence for HLS fairplay.

I am using Videojs version @7.5.5 and videojs-contrib-eme version @3.5.4

player.src({
            // normal Video.js src and type options
            src: streamUri,
            type: 'application/x-mpegURL',
            keySystems: {
                "com.apple.fps.1_0": {
                    certificateUri: certificateUri,
                    getLicense: function (emeOptions, contentId, keyMessage, callback) {
                        videojs.xhr({
                            uri: licenceUri,
                            method: 'POST',
                            responseType: 'arraybuffer',
                            body: keyMessage,
                            headers: {
                                'Content-type': 'application/octet-stream',
                                'utoken-drm': 'fp'
                            }
                        }, function (err, response, responseBody) {
                            if (err) {
                                callback(err);
                                return;
                            }

                            callback(null, responseBody);
                        });
                    }
                }
            }
        });
        player.play();'''
1

There are 1 best solutions below

1
On

This is a CORS error. CORS is described here if you aren't familiar.

Is it your content? Did you set up the licence server?