Where could I get the 32 bits Widevine deb package for Chromium for Linux? Is there any alternative 32 bits deb package to replace Widevine?
32 bits Widevine DEB package for Linux
Collapse
X
-
Tags: None
-
Hello,
You can use this Github repo to get it. This is the easiest way. Essentially, #1 is to install Chrome and then grab itβs Widevine .so and it will auto update.
[ICODE] $wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list $sudo apt update && sudo apt install -y google-chrome-stable $git clone https://github.com/proprietary/chromium-widevine.git && \ cd chromium-widevine && \ ./use-from-google-chrome.sh[/ICODE]
and then to test it you use:
[ICODE]killall -q -SIGTERM chromium-browser || \ killall -q -SIGTERM chromium && \ exec $(command -v chromium-browser || command -v chromium) ./test-widevine.html &[/ICODE]Comment
Comment