Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/playback-core/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"Failed to generate a DRM license request. This may be an issue with the player or your protected content.": "Failed to generate a DRM license request. This may be an issue with the player or your protected content.",
"Failed to update DRM license. This may be an issue with the player or your protected content.": "Failed to update DRM license. This may be an issue with the player or your protected content.",
"Your server certificate failed when attempting to set it. This may be an issue with a no longer valid certificate.": "Your server certificate failed when attempting to set it. This may be an issue with a no longer valid certificate.",
"The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.": "The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.",
"The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.": "The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.",
"DRM playback is being attempted in an environment that is not sufficiently secure. User may see black screen.": "DRM playback is being attempted in an environment that is not sufficiently secure. User may see black screen.",
"The live stream or video file are not yet ready.": "The live stream or video file are not yet ready.",
"This playback-id may belong to a live stream that is not currently active or an asset that is not ready.": "This playback-id may belong to a live stream that is not currently active or an asset that is not ready.",
Expand Down
2 changes: 1 addition & 1 deletion packages/playback-core/src/eme-fairplay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const setupEmeNativeFairplayDRM = ({
let mediaError;
if (mediaKeyStatus === 'internal-error') {
const message = i18n(
'The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.'
'The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.'
);
mediaError = new MediaError(message, MediaError.MEDIA_ERR_ENCRYPTED, true);
mediaError.errorCategory = MuxErrorCategory.DRM;
Expand Down
2 changes: 1 addition & 1 deletion packages/playback-core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ const getErrorFromHlsErrorData = (
mediaError.muxCode = MuxErrorCode.ENCRYPTED_UPDATE_SERVER_CERT_FAILED;
} else if (data.details === Hls.ErrorDetails.KEY_SYSTEM_STATUS_INTERNAL_ERROR) {
const message = i18n(
'The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.'
'The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.'
);
mediaError = new MediaError(message, MediaError.MEDIA_ERR_ENCRYPTED, data.fatal);
mediaError.errorCategory = MuxErrorCategory.DRM;
Expand Down
2 changes: 1 addition & 1 deletion packages/playback-core/src/webkit-fairplay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const setupWebkitNativeFairplayDRM = ({
console.error(`Internal Webkit Key Session Error - sysCode: ${error.systemCode} code: ${error.code}`);

const message = i18n(
'The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.'
'The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.'
);
const mediaError = new MediaError(message, MediaError.MEDIA_ERR_ENCRYPTED, true);
mediaError.errorCategory = MuxErrorCategory.DRM;
Expand Down
Loading