Click here for English version
Heute habe ich einen Film auf Youtube erworben und wollte ihn auf meinem Raspberry PI über den Beamer abspielen. Leider stellte ich fest, dass prinzipiell Youtube Videos abspielbar sind, aber nicht meine gekauften Filme. Ziemlich ärgerlich. Ich versuchte die Tipps aus den Blog https://www.tomshardware.com/how-to/play-netflix-raspberry-pi, leider ohne Erfolg.
Im Prinzip liegt das Problem im Digital Rights Management (DRM). Nachdem das DRM anfällig ist, gibt es wohl (noch) keine 64-bit Version von WidevineCDM. Um kurzfristig dennoch gekaufte Youtube Videos sehen zu können, kann man einfach mit dem folgenden Befehlt auf die 32-bit Version wechseln:
sudo apt install chromium-browser:armhf libwidevinecdm0
Wer später wieder zur 64-bit Version wechseln möchte, kann dies durch den folgenden Befehl erreichen:
sudo apt install chromium-browser:arm64 libwidevinecdm0-
Ich hoffe einigen von Euch dadurch geholfen zu haben.
Today I purchased a movie on Youtube and wanted to play it on my Raspberry PI via the beamer. Unfortunately I found that in principle Youtube videos are playable, but not my purchased movies. Quite annoying. I tried the tips from the blog https://www.tomshardware.com/how-to/play-netflix-raspberry-pi, unfortunately without success.
In principle, the problem is due to the Digital Rights Management (DRM). After the DRM is vulnerable, there is probably (yet) no 64-bit version of WidevineCDM. To be able to watch purchased Youtube videos in the short term, you can simply switch to the 32-bit version with the following command:
sudo apt install chromium-browser:armhf libwidevinecdm0
If you want to switch back to the 64-bit version later, you can do so with the following command:
sudo apt install chromium-browser:arm64 libwidevinecdm0-
I hope to have helped anyone facing the same issue.