Created
September 30, 2024 19:39
-
-
Save korutx/4e0176f66c6d27dcd5151adca6f7b49d to your computer and use it in GitHub Desktop.
Obtener transcripción de youtube via browser console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = document.querySelectorAll('.segment-text') | |
b = [...a] | |
c = b.map(e => e.innerText).join('\n') | |
console.log(c) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment