Skip to content

Instantly share code, notes, and snippets.

@korutx
Created September 30, 2024 19:39
Show Gist options
  • Save korutx/4e0176f66c6d27dcd5151adca6f7b49d to your computer and use it in GitHub Desktop.
Save korutx/4e0176f66c6d27dcd5151adca6f7b49d to your computer and use it in GitHub Desktop.
Obtener transcripción de youtube via browser console
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