Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable or allow list for auto dub [Youtube's new auto-dubbing] #2843

Open
xf- opened this issue Mar 9, 2025 · 5 comments
Open

Disable or allow list for auto dub [Youtube's new auto-dubbing] #2843

xf- opened this issue Mar 9, 2025 · 5 comments
Assignees
Labels
Feature request Wish or idea good first issue A GitHub standard for inviting (new) contributors *Congratulations in advance!* help wanted Just an old github standard we add automatically. (The team can remove it when working on it.) related thread/s exist/s. (Link or consolidate maybe) Thanks!! up-for-grabs (a github standard for inviting new contributors) - Welcome! ♥ YouTube changed

Comments

@xf-
Copy link

xf- commented Mar 9, 2025

PROBLEM:

YouTube started auto dub and the voices are messed up and often translation as well. I know multiple languages, this auto activated features annoys many peoples based on the comments.

SOLUTION:

  • Disable the feature
  • A list of non translated languages and use it only for unknown

RELEVANCE / SCOPE:

I think that depends on the person:
My order

  1. I prefer native language as long as I understand it
  2. Dub if it is done well or subtitles (done by creator)
  3. Bad subtitles
  4. Nightmare autotranslate

"SIDE EFFECTS":

No

CONTEXT:
//
Thank you!

SHORT Table (Summary)
Problem New feature Auto dub sounds like a nightmare for known languages
Solution Disable it or only apply it to unknown languages
Alternatives ---
Scope Playback language
Side effects ---
Context ---
@xf- xf- added Feature request Wish or idea good first issue A GitHub standard for inviting (new) contributors *Congratulations in advance!* help wanted Just an old github standard we add automatically. (The team can remove it when working on it.) up-for-grabs (a github standard for inviting new contributors) - Welcome! ♥ labels Mar 9, 2025
@ImprovedTube
Copy link
Member

hi and thanks! @xf-

compare:

#1647 (comment)

@xf-
Copy link
Author

xf- commented Mar 9, 2025

Hi, nice to see there is already some progress.
I searched but so many keywords for such a topic and ignored word subtitle.

Minimal Solution - turn off the bullshit from YouTube and show the availability. AI Spoken sounds so wrong, and I would watch it as a last resort. e.g. I need schematic for a device and only available in unknown language. Anything for entertainment is a no-go.

I will close this.

@xf- xf- closed this as completed Mar 9, 2025
@ImprovedTube ImprovedTube reopened this Mar 9, 2025
@xf-
Copy link
Author

xf- commented Mar 9, 2025

Why keep this open? Is a duplicate and has no additional information, or?

@ImprovedTube ImprovedTube added YouTube changed related thread/s exist/s. (Link or consolidate maybe) Thanks!! labels Mar 9, 2025
@ImprovedTube
Copy link
Member

hi! @xf-

Minimal Solution

yes, the thoughts from 2023 aren't the same and i didn't think of this thread as duplicate, even though its related to it and to recent changes:
#2608
#2767
i didnt use youtube much lately myself.

so my step-1 might be to collect everything related, to prepare the most complete solution, fixing the most issues and usage scenarios at once.

And maybe somebody just does the minimal solution,
and the latest thread, if any, might be best to lead the topic after the latest changes.
Volunteers often check the latest.

@ImprovedTube ImprovedTube moved this from Done to Todo in Priority A Mar 9, 2025
@ImprovedTube ImprovedTube changed the title Disable or allow list for auto dub Disable or allow list for auto dub [Youtube's new auto-dubbing] Mar 9, 2025
@yetzt
Copy link

yetzt commented Mar 10, 2025

as a stopgap i'm using this code via code injector:

// open video settings
document.querySelector(".ytp-settings-button").click();

// find "Audio track" menuitem
let trackMenu = Array.from(document.querySelectorAll(".ytp-menuitem")).find(el => el.textContent.includes("Audio track"))
if (trackMenu) {
	trackMenu.click();
	
	// find original language and select
	let origLang = Array.from(document.querySelectorAll(".ytp-menuitem")).find(el => el.textContent.includes("original"));
	if (origLang) origLang.click();
};

// close video settings
document.querySelector(".ytp-settings-button").click();

so far i've found selecting the "original" audiotrack when available to be reliable.
it would be grandiose if the addon could automate this via a setting, make it work across languages and not show the settings menu.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature request Wish or idea good first issue A GitHub standard for inviting (new) contributors *Congratulations in advance!* help wanted Just an old github standard we add automatically. (The team can remove it when working on it.) related thread/s exist/s. (Link or consolidate maybe) Thanks!! up-for-grabs (a github standard for inviting new contributors) - Welcome! ♥ YouTube changed
Projects
Status: Todo
Development

No branches or pull requests

3 participants