Skip to content

Commit

Permalink
fix rumble (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyhalight committed Aug 29, 2024
1 parent 7540fbe commit f080030
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- Исправлена ошибка из-за которой при смене адреса worker прокси-сервера домен сразу применялся, даже, если проксирование аудио выключено
- Исправлена ошибка из-за которой при запросе субтитров не учитывался выбранный язык видео
- Исправлена ошибка из-за которой не появлялся значок загрузки при переводе на "кастомных" сайтах
- Исправлена ошибка из-за которой на Rumble не появлялась кнопка (#784)
- Автоперевод и первичное получение субтитров, теперь, происходит параллельно
- Некоторые другие мелкие улучшения

Expand Down
2 changes: 1 addition & 1 deletion dist/vot-min.user.js

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions dist/vot.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -6266,7 +6266,11 @@ const isAdVideo = (video) => {
};

const isMutedVideo = (video) => {
return video.hasAttribute("muted") && !video.classList.contains("vjs-tech");
return (
video.hasAttribute("muted") &&
!video.classList.contains("vjs-tech") &&
!video.preload
);
};

const isVideoReady = (video) => video.readyState >= 3;
Expand Down Expand Up @@ -6550,8 +6554,8 @@ class VideoHandler {
await this.updateTranslationErrorMsg(
res.remainingTime > 0
? secsToStrTime(res.remainingTime)
: (res.message ??
localizationProvider.get("translationTakeFewMinutes")),
: res.message ??
localizationProvider.get("translationTakeFewMinutes"),
);
} catch (err) {
console.error("[VOT] Failed to translate video", err);
Expand Down
6 changes: 5 additions & 1 deletion src/utils/VideoObserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ const isAdVideo = (video) => {
};

const isMutedVideo = (video) => {
return video.hasAttribute("muted") && !video.classList.contains("vjs-tech");
return (
video.hasAttribute("muted") &&
!video.classList.contains("vjs-tech") &&
!video.preload
);
};

const isVideoReady = (video) => video.readyState >= 3;
Expand Down

0 comments on commit f080030

Please sign in to comment.