Page 2 of 5

Re: BitChute videos no longer display

Posted: 2021-11-29, 00:10
by PM-user
I installed pmplayer and restarted pm, but still does not play bc. Do I need to change other setting?

Re: BitChute videos no longer display

Posted: 2021-11-29, 00:28
by moonbat
Read the instructions on how to use the extension, from its homepage that's linked to from its entry in your addons.

Re: BitChute videos no longer display

Posted: 2021-12-07, 22:37
by PM-user
Got it playing, and sized. I'm assuming there are no speed or quality settings since I don't see a settings button.

Re: BitChute videos no longer display

Posted: 2021-12-07, 23:02
by moonbat
That depends on the video host in question, not the extension since all it does is display whatever the site provides in an embed.

Re: BitChute videos no longer display

Posted: 2021-12-10, 04:49
by PM-user
Odysee is now not playing; should this be approached the same way as Bitchute?

Re: BitChute videos no longer display

Posted: 2021-12-10, 06:47
by KlarkKentThe3rd
PM-user wrote:
2021-12-10, 04:49
Odysee is now not playing; should this be approached the same way as Bitchute?
It may be them being broken. I know that is a possibility, since getting a video with youtube-dl did not work for me 2 days ago.

Re: BitChute videos no longer display

Posted: 2021-12-10, 13:23
by cartel
PM-user wrote:
2021-12-10, 04:49
Odysee is now not playing; should this be approached the same way as Bitchute?
2021018.jpg
I think it is.
this is no good.
I dont want to use chrome or firefox......hopefully palemoon gets this fixed

Re: BitChute videos no longer display

Posted: 2021-12-10, 14:25
by ron_1
Web designers have gotten lazy (or dumb) and that's something that Pale Moon has to fix??

Re: BitChute videos no longer display

Posted: 2021-12-10, 20:45
by KlarkKentThe3rd
ron_1 wrote:
2021-12-10, 14:25
Web designers have gotten lazy (or dumb) and that's something that Pale Moon has to fix??
Sometimes there is no choice.

Re: BitChute videos no longer display

Posted: 2021-12-11, 00:36
by Moonchild
KlarkKentThe3rd wrote:
2021-12-10, 20:45
Sometimes there is no choice.
When it comes to web design there is -always- choice.

Re: BitChute videos no longer display

Posted: 2021-12-11, 01:06
by PM-user
While I'm waiting for Bitchute and Odysee vids to play again in the browser, does anyone have any recommendations for a different high security browser that will play properly?

Re: BitChute videos no longer display

Posted: 2021-12-11, 01:36
by ron_1
I don't know if this fits your definition of a "high security browser" but my secondary browser is Vivaldi. I can't say whether it plays Bitchute or Odysee videos as I don't use those sites, but I bet it would. FTR, I hate the fact I have to have a chromium based browser on my system, but that's just the reality for me as even Firefox doesn't work well on my job's website.

Re: BitChute videos no longer display

Posted: 2021-12-11, 05:20
by KlarkKentThe3rd
Moonchild wrote:
2021-12-11, 00:36
When it comes to web design there is -always- choice.
I know! Any code can be fixed, provided there is time. I meant sometimes the user is screwed, and there is nothing for that user to do, for a period of time.

Re: BitChute videos no longer display

Posted: 2021-12-11, 20:43
by PM-user
I installed Brave, and it plays all formats, and is a bit faster and scrolls more smoothly on my older laptop. It's a bit too polished though, and I have to think that if they have that much backing to polish it, it might have a backdoor sellout to the big guys.

Re: BitChute videos no longer display

Posted: 2021-12-11, 23:34
by basicuser
PM-user wrote:
2021-12-10, 04:49
Odysee is now not playing; should this be approached the same way as Bitchute?
Odysee is working fine for me on Mint 20.1, Pale Moon 29.4.2.1 with uBlockO and Adblock Latitude.

Re: BitChute videos no longer display

Posted: 2021-12-12, 15:26
by coffeebreak
PM-user wrote:
2021-12-10, 04:49
Odysee
basicuser wrote:
2021-12-11, 23:34
Odysee is working fine
Yes it is.
It's also off-topic here, since this thread is about BitChute.

People, it's one thread for each distinct issue with that one site.
Please open separate threads for problems with other sites (if one doesn't already exist, search first) - even if that other site is a video site.

Re: BitChute videos no longer display

Posted: 2022-01-05, 04:42
by KlarkKentThe3rd
Disabling inline scripts no longer works, at least for me. Infinite loading.

Maybe tomorrow everything will run fine, but I don't know that.

Re: BitChute videos no longer display

Posted: 2022-01-05, 17:44
by gepus
KlarkKentThe3rd wrote:
2022-01-05, 04:42
Disabling inline scripts no longer works, at least for me.
Works for me.

Re: BitChute videos no longer display

Posted: 2022-02-06, 13:43
by Kris_88
viewtopic.php?f=3&t=27867

I like old Plyr v3.3.9.
It seems to me that it works faster.

Code: Select all

// ==UserScript==
// @name        bitchute
// @namespace   btc1
// @include     https://www.bitchute.com/*
// @run-at document-start
// @version     1
// @grant       none
// ==/UserScript==
if(window.location.hostname == 'www.bitchute.com') {
   document.addEventListener("beforescriptexecute",
    function(e) {
      if(e.target.src == 'https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.9/plyr.polyfilled.min.js') {
        var s = document.createElement('script');
        s.type = 'text/javascript';
        s.src = 'https://cdnjs.cloudflare.com/ajax/libs/plyr/3.3.9/plyr.polyfilled.min.js';
        s.async = false;
        e.target.parentNode.insertBefore(s, e.target.nextSibling);
        e.preventDefault();
        e.stopPropagation();

        var lnk = document.getElementsByTagName("link");
        for(var i=0; i<lnk.length; i++) {
          if(lnk[i].href=='https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.9/plyr.min.css')
            lnk[i].href='https://cdnjs.cloudflare.com/ajax/libs/plyr/3.3.9/plyr.css';
        };

      };
    }
   , true);
};

Re: BitChute videos no longer display

Posted: 2022-02-06, 22:26
by PM-user
Most people's bitchute are still not playing without an extra player, correct?