I am implementing Widevine DRM with Videojs player. At present, we have already implemented HLS, non-drm playback for music (audio only) content and is working fine.
Now, I am implementing Widevine DRM & DASH.
import "videojs-contrib-eme";
import videojs from "video.js";
Code attached above.
There is no error in browser console but also music is not played.
License call is successful and the callback function is also called (Attached breakpoints in debugger to confirm this)
On seeing the Network tab of chrome browser, I see that no more network calls are being made after the license request.
There should be network calls to fetch the audio chunks.
What am I missing?
Do I need to use videojs-contrib-dash also for DASH playback?
Hi team,
I am implementing Widevine DRM with Videojs player. At present, we have already implemented HLS, non-drm playback for music (audio only) content and is working fine.
Now, I am implementing Widevine DRM & DASH.
import "videojs-contrib-eme"; import videojs from "video.js";
Code attached above. There is no error in browser console but also music is not played.
License call is successful and the callback function is also called (Attached breakpoints in debugger to confirm this) On seeing the Network tab of chrome browser, I see that no more network calls are being made after the license request.
There should be network calls to fetch the audio chunks.