Skip to content

Instantly share code, notes, and snippets.

@kseikyo
Created September 22, 2025 14:11
Show Gist options
  • Select an option

  • Save kseikyo/629f6a820d3df47b1603aa5ae9e17d28 to your computer and use it in GitHub Desktop.

Select an option

Save kseikyo/629f6a820d3df47b1603aa5ae9e17d28 to your computer and use it in GitHub Desktop.
Get transcript from google drive video
const target = "[jsname=h7hTqc]";
const transcriptList = document.querySelector(target);
const len = transcriptList.children.length;
let transcript = [];
for(let i = 0; i < len; i++){
transcript.push({timestamp: transcriptList.children[i].children[0].innerHTML, text: transcriptList.children[i].children[1].innerHTML});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment