https://www.bbc.com/news - video playback broken

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
snotty
Hobby Astronomer
Hobby Astronomer
Posts: 20
Joined: 2018-09-01, 21:37
Location: Austria

https://www.bbc.com/news - video playback broken

Unread post by snotty » 2024-03-28, 01:00

https://www.bbc.com/news/world-us-canada-68667813

Code: Select all

XML-Verarbeitungsfehler: Syntax-Fehler
Adresse: https://emp.bbc.com/emp/SMPj/2.51.0/iframe.html
Zeile Nr. 1, Spalte 1:
probably this?

User avatar
adoxa
Fanatic
Fanatic
Posts: 170
Joined: 2019-03-16, 13:26

Re: https://www.bbc.com/news - video playback broken

Unread post by adoxa » 2024-03-28, 07:29

No, it's lack of CSS aspect-ratio. Here's a Modify HTTP Response filter to work around it (adjust height to suit).

Code: Select all

[["www.bbc.com",["/chunks\\/606-/",["/aspect-ratio: 16\\/9;/g","height: 500px;"]]]]
Or use a custom style.

Code: Select all

.byEEBG {
  height: 500px !important;
}

User avatar
snotty
Hobby Astronomer
Hobby Astronomer
Posts: 20
Joined: 2018-09-01, 21:37
Location: Austria

Re: https://www.bbc.com/news - video playback broken

Unread post by snotty » 2024-03-28, 20:26

thank you!