• Přihlásit se
    • Hledat
    • Kategorie
    • Nejnovější
    • Značky
    • Uživatelé
    • Skupiny
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    Widevine and Opera

    Opera for Linux
    28
    69
    98797
    Načítání více příspěvků
    • Od nejstarších po nejnovější
    • Od nejnovějších po nejstarší
    • S nejvíce hlasy
    Odpovědět
    • Odpovědět jako Téma
    Přihlásit se pro odpověď
    Toto téma bylo odstraněno. Jen uživatelé s oprávněním správy témat ho mohou vidět.
    • miqwalsh
      miqwalsh naposledy upravil

      @zekemx said in Widevine and Opera:

      In conclusion.. Opera doesn't work with widevine anymore (As of today), I hope the Opera Developers would explain why, but probably they don't care about linux users anymore.

      @ zekemx:- That's it in a nutshell. I read somewhere, not many days ago, that Opera has been bought out by one of the 'big boys'. Expect many more annoying changes like this over the next few releases; these people have made it crystal-clear that they are only going to support Windows exclusively.....because that's where the money is.

      Everybody else can go whistle. So; it looks like I, too, will be returning to Chrome again.

      Bloody annoying.....but at least Big Brother doesn't give you quite this many hoops to jump through for an overall 'experience'. And everything does work, with relatively little 'pain'.

      Mike. 😠

      Odpovědět Citovat 2
        1 odpověď Poslední odpověď
      • Bývalý uživatel
        Bývalý uživatel naposledy upravil sgunhouse

        Hi guys, I have some good news ;-)
        I just checked it, and the problem looks to be solved in the latest developer version
        (68.0.3602.0 - "DNA-84335 [Linux] Widevine is not working due to changed path of libwidevinecdm.so"),
        when you provide proper path to Widevine's folder in the "widevine_config.json" file, for example "/usr/lib/chromium-browser/WidevineCdm".

        Odpovědět Citovat 1
          Bývalý uživatel 1 odpověď Poslední odpověď
        • Bývalý uživatel
          Bývalý uživatel naposledy upravil

          Widewine works again in developer version (Version:68.0.3602.0). It seems that they have changed the format of widevine_config.json and now instead of poinitng to the library file, the addresses point to the WidevineCdm directory containing manifest.json file and _platform_specific directory. This would be by default /opt/google/chrome/WidevineCdm

          Odpovědět Citovat 2
            1 odpověď Poslední odpověď
          • burnout426
            burnout426 Volunteer naposledy upravil burnout426

            The setup I did for Opera Stable (66) for libffmpeg and Widevine on Linux Mint 19.3 XFCE is this:

            • Install Google Chrome and Opera.

            • Create "/usr/lib/x86_64-linux-gnu/opera/lib_extra"

            • Place libffmpeg.so for Chromium 79 in the "lib_extra" folder. Got it from https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases/tag/0.43.6.

            • Copy "opt/google/chrome/WidevineCdm" to the "lib_extra" folder.

            • Edit "/usr/lib/x86_64-linux-gnu/opera/resources/ffmpeg_preload_config.json" to be:

              []
              
            • Edit "/usr/lib/x86_64-linux-gnu/opera/resources/widevine_config.json" to be:

                [
                    {
                       "preload": "/usr/lib/x86_64-linux-gnu/opera/lib_extra/WidevineCdm"
                    }
              
                ]
              
            • Uninstall Chrome and delete "/usr/lib/chromium-browser" for good measure.

            In testing, unlike "lib_extra" for ffmpeg, Opera does not not search for the Widevine lib or the Widevine folder in any other place besides what's in widevine_config.json. It doesn't even search in "~/.config/opera/WidevineCdm".

            (See https://forums.opera.com/post/199264 (my reply/question to @jimunderscorep) for why I edited the config files so Opera only searches for its own copies of libffmpeg and widevine.)

            Odpovědět Citovat 3
              1 odpověď Poslední odpověď
            • burnout426
              burnout426 Volunteer naposledy upravil

              Here's how I'm getting Widevine for Opera Stable without installing Chrome. It's based on https://gist.github.com/ruario/3c873d43eb20553d5014bd4d29fe37f1.

              wget https://dl.google.com/widevine-cdm/versions.txt
              
              wdm=$( cat versions.txt | tail -n1 )
              
              wget https://dl.google.com/widevine-cdm/$wdm-linux-x64.zip
              
              unzip $wdm-linux-x64.zip
              
              mkdir WidevineCdm
              
              mv manifest.json WidevineCdm
              
              mkdir "WidevineCdm/_platform_specific"
              
              mkdir "WidevineCdm/_platform_specific/linux_x64"
              
              mv libwidevinecdm.so "WidevineCdm/_platform_specific/linux_x64"
              

              Then, put the WidevineCdm folder in a spot Opera is looking for like /opt/google/chrome:

              sudo mkdir /opt
              
              sudo mkdir /opt/google
              
              sudo mkdir /opt/google/chrome
              
              sudo mv WidevineCdm /opt/google/chrome
              

              Then:

              cat /usr/lib/x86_64-linux-gnu/opera/resources/widevine_config.json
              

              and make sure the first preload is exactly:

              "preload" : "/opt/google/chrome/WidevineCdm"

              If not, fix it.

              Odpovědět Citovat 1
                1 odpověď Poslední odpověď
              • Bývalý uživatel
                Bývalý uživatel @Host naposledy upravil

                Hi guys, the Widevine is fixed now also in the latest Opera stable for Linux.

                Odpovědět Citovat 1
                  Bývalý uživatel 1 odpověď Poslední odpověď
                • Bývalý uživatel
                  Bývalý uživatel @Host naposledy upravil

                  @l33t4opera still you need to add ffmpeg.so file under lib_extra directory.

                  Odpovědět Citovat 0
                    Bývalý uživatel 1 odpověď Poslední odpověď
                  • Bývalý uživatel
                    Bývalý uživatel @Host naposledy upravil sgunhouse

                    Hi @igitqara, yes, because the Opera itself doesn't provide H.264 codec in its "libffmpeg.so" lib in the package.

                    Regarding the "lib_extra", the lib can be placed also in any custom folder. You can change the path to it in ffmpeg_preload_config.json file, which is located in the /path/to/opera's-install-root/resources folder.

                    Odpovědět Citovat 0
                      1 odpověď Poslední odpověď
                    • Bývalý uživatel
                      Bývalý uživatel naposledy upravil

                      I can confirm that widevine is working again on stable 66 🙂

                      Have somebody figured out how to use widevine with snap version of Opera? It appears, that only reason it is not working, is that snaps don't have access to /opt/google/chrome. If devs provide alternative location for storing widevine, fe somewhere in /home folder snaps should also plays nicely with widevine.

                      Odpovědět Citovat 0
                        1 odpověď Poslední odpověď
                      • Referenced by  jhog jhog 
                      • First post
                        Last post

                      Computer browsers

                      • Opera for Windows
                      • Opera for Mac
                      • Opera for Linux
                      • Opera beta version
                      • Opera USB

                      Mobile browsers

                      • Opera for Android
                      • Opera Mini
                      • Opera Touch
                      • Opera for basic phones

                      • Add-ons
                      • Opera account
                      • Wallpapers
                      • Opera Ads

                      • Help & support
                      • Opera blogs
                      • Opera forums
                      • Dev.Opera

                      • Security
                      • Privacy
                      • Cookies Policy
                      • EULA
                      • Terms of Service

                      • About Opera
                      • Press info
                      • Jobs
                      • Investors
                      • Become a partner
                      • Contact us

                      Follow Opera

                      • Opera - Facebook
                      • Opera - Twitter
                      • Opera - YouTube
                      • Opera - LinkedIn
                      • Opera - Instagram

                      © Opera Software 1995-