크롬 와이드 바인 데비안 패키지 사용


10

최소한 데비안 9 (스트레치)부터 데비안은 contrib 패키지를 포함합니다 chromium-widevine. 이 패키지에 대한 설명은 다음과 같습니다.

이 패키지는 광범위한 컨텐츠 암호 해독 모듈을 지원합니다.

그러나이 패키지를 설치 한 후 Chromium이 인식하거나이 플러그인을로드하고 있다는 표시를 찾을 수 없습니다. 이 패키지에서 Widevine의 위치는 /usr/lib/chromium/libwidevinecdmadapter.so입니다.

이 패키지의 현재 사용은 Chromium에서 Amazon Prime Video를 재생하는 것입니다. 현재 오류가 발생합니다.

웹 브라우저에 디지털 권한 구성 요소가 없습니다. chrome : // components로 이동하여 WidevineCdm에서 업데이트 확인을 클릭하십시오.

chrome : // components는 Chromium 아래에 WidevineCdm을 표시하지 않습니다.

더 이상하게, 나는 얻는다 :

root@orwell:/usr/lib/chromium# ldd libwidevinecdmadapter.so 
        linux-vdso.so.1 (0x00007ffccbfad000)
        libwidevinecdm.so => not found
        libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f08c6e5b000)
        libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f08c6ad3000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f08c6733000)
        /lib64/ld-linux-x86-64.so.2 (0x000055e84bdbe000)
        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f08c642b000)
        libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f08c6213000)

그래서 libwidevinecdm.so아무것도 해결되지 않습니까?

내가 여기서 뭘해야할지 모르겠어? 는 chromium-widevine어떠한 문서 나 하나를 진행하도록되어 어떻게 표시가 없습니다.

참고 :이 질문은 크롬 데비안 패키지가 더 이상 존재하지 않기 때문에 적어도 데비안 10 / 버스터에서 구식입니다.


패키지에 문서가 없으면 버그 보고서를 제출하십시오. 최소한 "중요한"(또는 아마도 "심각한") 심각도 수준 버그 인 IMO .
cas

답변:


9

chromium-widevinecontrib repo의 debian 9.3에서 netflix를 사용하는 것은 운이 없었습니다 . 내가 한 일은 :

wget https://dl.google.com/widevine-cdm/1.4.8.1008-linux-x64.zip
unzip 1.4.8.1008-linux-x64.zip
sudo mkdir /usr/lib/chromium
sudo mv libwidevinecdm.so /usr/lib/chromium
sudo chmod 644 /usr/lib/chromium/libwidevinecdm.so

분명히,이 레시피가 효과가 있었습니까?
Faheem Mitha

1
예, 크롬에서 데비안 9.3에서
netflix를 시청 중입니다.

확인 주셔서 감사합니다. 이 방법을 시도해 보겠습니다. 데비안 패키지가 작동하지 않는 이유가 궁금합니다.
Faheem Mitha


3
Mint 19.2에서 방금 시도했습니다. Chromium 76과 함께 작동했지만 아쉽지 않습니다.
Bernd Wechner

0

데비안은 공식 배포판에 포함 된 모든 패키지는 무료 소프트웨어이지만 Widevine CDM 라이브러리는이 범주에 속하지 않는다고 말합니다. Chrome 참조 빌드 에는 바이너리 블로 브가 있습니다 .


그래도 사용 방법에 대한 참조가없는 패키지를 포함하면별로 유용하지 않습니다. 내가 링크 추가 /usr/lib/chromium# ln -s /opt/google/chrome/libwidevinecdm.so .이제 국무 비디오 "디지털 권리 구성 요소가 누락"에 대해 불평하지 않습니다,하지만 중 하나가 작동하지 않습니다. 현재 작동하지 않는 Chrome 자체와 동일한 오류가 발생합니다.
Faheem Mitha

@FaheemMitha Chrome이 둘 중 더 효과적입니다. 왜 문제가 생길지 아십니까?
Fox

안녕 여우 아뇨 최근까지 일하고있었습니다. 그러나 최근 업그레이드가 있었다고 생각합니다.
Faheem Mitha

0

Widevine을 크롬으로 다운로드하여 설치하기 위해 Arch Linux에서 찾은 스크립트를 업데이트했습니다. 크롬 설치 디렉토리의 경로 만 업데이트하면됩니다. 가장 큰 차이점은 다운로드 한 아카이브에 포함 된 매니페스트도 설치한다는 것이며 크롬의 chrome : // components를 통해 Widevine 버전을 표시 할 수 있다는 것입니다. 여기있어:

#!/bin/sh

# For ARM use this instead
# https://gist.github.com/ruario/19a28d98d29d34ec9b184c42e5f8bf29

available () {
  command -v "$1" >/dev/null 2>&1
}

# Make sure we have wget or curl
if available wget; then
  SILENT_DL="wget -qO-"
  LOUD_DL="wget"
elif available curl; then
  SILENT_DL="curl -s"
  LOUD_DL="curl -O"
else
  echo "Install wget or curl" >&2
  exit 1
fi

# Set Output dir
#WIDEVINE_DIR="${WIDEVINE_INSTALL_DIR:-/opt/google/chrome}"
#WIDEVINE_DIR="${WIDEVINE_INSTALL_DIR:-/usr/lib/chromium}"
WIDEVINE_DIR="${WIDEVINE_INSTALL_DIR:-/usr/lib/chromium-browser}"

# Use the architecture of the current machine or whatever the user has set
# externally
ARCH="${ARCH:-$(uname -m)}"
case "$ARCH" in
  x86_64) WIDEVINE_ARCH="x64" 
          WIDEVINE_INSTALL_DIR="$WIDEVINE_DIR/WidevineCdm/_platform_specific/linux_x64" ;;
    i?86) WIDEVINE_ARCH="ia32" 
          WIDEVINE_INSTALL_DIR="$WIDEVINE_DIR/WidevineCdm/_platform_specific/linux_x86" ;;
    arm*) echo "For ARM use https://gist.github.com/ruario/19a28d98d29d34ec9b184c42e5f8bf29 instead" >&2 ; exit 1 ;;
       *) echo "The architecture $ARCH is not supported." >&2 ; exit 1 ;;
esac

# Set temp dir
TMP="${TMP:-/tmp}"

# Set staging dir
STAGINGDIR="$TMP/widevine-staging"

# Work out the latest Widevine version
#WIDEVINE_VERSION="${WIDEVINE_VERSION:-$($SILENT_DL https://dl.google.com/widevine-cdm/current.txt)}"
WIDEVINE_VERSION="${WIDEVINE_VERSION:-$($SILENT_DL https://dl.google.com/widevine-cdm/versions.txt | tail -n1)}"
echo latest Version: $WIDEVINE_VERSION

# Error out if $CDMVERISON is unset, e.g. because previous command failed
if [ -z "$WIDEVINE_VERSION" ]; then
  echo "Could not work out the latest version; exiting" >&2
  exit 1
fi

# Find current installed version
INSTALLED_VERSION=$(grep '"version":' $WIDEVINE_DIR/WidevineCdm/manifest.json|cut -f4 -d'"')

# Don't start repackaging if the same version is already installed
if [ $WIDEVINE_VERSION = $INSTALLED_VERSION ]; then
  echo "The latest Widevine ($WIDEVINE_VERSION) is already installed"
  exit 0
fi

# If the staging directory is already present from the past, clear it down and
# re-create it.
if [ -d "$STAGINGDIR" ]; then
  rm -fr "$STAGINGDIR"
fi

# Stop on any error
set -eu

# Make and switch to the staging directory
mkdir -p "$STAGINGDIR"
cd "$STAGINGDIR"

# Now get the latest widevine zip for the users architecture
$LOUD_DL "https://dl.google.com/widevine-cdm/${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip"

# Extract the contents of Widevine package
if available unzip; then
  unzip "${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip" libwidevinecdm.so
  unzip "${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip" manifest.json 
elif available bsdtar; then
  bsdtar xf "${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip" libwidevinecdm.so
  bsdtar xf "${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip" manifest.json
else
  # The user's system has no obvious handler for Zip files. GZip can extract
  # the first entry from a Zip. If libwidevinecdm.so is the first entry, we
  # might just pull this off! ;)
  missing_extractor_error () {
    echo "Install InfoZip Unzip or BSD tar" >&2
    exit 1
  }
  # Look in first 50 bytes for libwidevinecdm.so as it'll be mentioned there
  # if it is the first entry in the zip
  if head -c50 "${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip" | grep -Fq libwidevinecdm.so; then
    # Hide the warning about multiple entries and ensure an exit code of 0
    gzip -d < "${WIDEVINE_VERSION}-linux-${WIDEVINE_ARCH}.zip" > libwidevinecdm.so 2> /dev/null ||:
    # Check that it looks like an executable
    if ! file libwidevinecdm.so | grep -Fq ELF; then
      missing_extractor_error
    fi
  else
    missing_extractor_error
  fi
fi

# Add version number file
#touch "widevine-$WIDEVINE_VERSION"
#SED_PAR="s/\"version\": \".*\"/\"version\": \"$WIDEVINE_VERSION\"/"
#if [ -e $WIDEVINE_DIR/WidevineCdm/manifest.json ]; then
#  sed $WIDEVINE_DIR/WidevineCdm/manifest.json -e "$SED_PAR" >$STAGINGDIR/manifest.json
#fi

# Escalate privileges if needed and copy files into place
#SED_PAR="s/\"version\": \".*\"/\"version\": \"$WIDEVINE_VERSION\"/"
if [ "$USER" = "root" ]; then
  install -Dm644 libwidevinecdm.so "$WIDEVINE_INSTALL_DIR/libwidevinecdm.so"
  if [ -e $STAGINGDIR/manifest.json ]; then
#     mv $WIDEVINE_DIR/WidevineCdm/manifest_neu.json $WIDEVINE_DIR/WidevineCdm/manifest.json
     install -Dm644 manifest.json "$WIDEVINE_DIR/WidevineCdm/manifest.json"
  fi
elif [ -r /etc/os-release ] && grep -qxE 'ID=((ubuntu)|(debiiian))' /etc/os-release; then
  echo "Calling sudo ... If prompted, please enter your password so Widevine can be copied into place"
  sudo  install -Dm644 libwidevinecdm.so "$WIDEVINE_INSTALL_DIR/libwidevinecdm.so"
  if [ -e "$WIDEVINE_INSTALL_DIR/libwidevinecdm.so" ]; then
    if [ -e $STAGINGDIR/manifest.json ]; then
      sudo install -Dm644 manifest.json "$WIDEVINE_DIR/WidevineCdm/manifest.json"
    fi
  else
    echo "Something went wrong installing libwidevinecdm.so" >&2
    exit 1
  fi
else
  echo "Please enter your root password so Widevine can be copied into place"
  su -c "sh -c \"install -Dm644 libwidevinecdm.so $WIDEVINE_INSTALL_DIR/libwidevinecdm.so && install -Dm644 manifest.json $WIDEVINE_DIR/WidevineCdm/manifest.json\""
fi

# Tell the user we are done
echo "Widevine ($WIDEVINE_VERSION) installed into $WIDEVINE_INSTALL_DIR/"
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.