I am trying to detect if a chrome user has disabled media with copyright via his settings(see attached image)
After some research I've only found the following logic which only determines if the browser itself supports protected content or not, not if the user has disabled it on his own. Therefore, it will always return true.
'navigator' in window && 'requestMediaKeySystemAccess' in window.navigator;
Is there a way to detect this? I did notice that Netflix for example detects this and displays a user friendly message before playing the content.