nginx-vod-module icon indicating copy to clipboard operation
nginx-vod-module copied to clipboard

DASH+PlayReady Issue with Media Source Format - 'media.err.src.not.supported'

Open nicoonee opened this issue 7 months ago • 1 comments

Hello Kaltura Nginx VOD Module maintainers,

I've encountered an issue with media playback that results in a 'media.err.src.not.supported' error. Here are the details of the error:

code: 208 type: "media.err.src.not.supported" message: "DEMUXER_ERROR_COULD_NOT_OPEN: MediaFoundationRenderer error: kOnPlaybackError (Error (0x13D) while retrieving error. (0x8004110E))" renderer: "DASH" originalEvent: MediaError

This error occurs when trying to play a DASH formatted stream with Playready on the Edge browser on Windows 11 pro. Notably, the same DASH stream works correctly when using Widevine for the very same stream on same machine using Chrome, which suggests that the format itself is not the issue. However, the demuxer is unable to open the media source with Playready.

Here are some additional details that might be helpful:

My nginx.conf:

DASH

    location ~ ^/video/vod/(?:\d+/)+(?<content_id>\d+)/video\.ism/(?:video\.mpd|nv-dash-) {
        access_log /var/log/nginx/kaltura_nginx_access.log main;
        set $content_id $1;
        vod dash;
        vod_dash_manifest_file_name_prefix video;
        vod_dash_init_file_name_prefix nv-dash-init-vod4;
        vod_dash_fragment_file_name_prefix nv-dash-frag-vod4;
        vod_dash_absolute_manifest_urls off;
        vod_dash_manifest_format segmenttimeline;
        vod_dash_init_mp4_pssh on;

        # Multi-DRM configuration
        vod_drm_enabled on;
        vod_drm_clear_lead_segment_count 0;
        vod_drm_upstream_location /drminfo;
        vod_drm_request_uri "/$content_id/multi";
    }

Player receive a proper Playready License but has issue to play the content. Issue is on all the players and dash-if included. I’ve tested it on two different license servers including Axinom. Please help.

Thank you for your support.

nicoonee avatar Nov 20 '23 22:11 nicoonee