Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Transcriptions are blank - Fixes #181
Browse files Browse the repository at this point in the history
  • Loading branch information
mytja committed Jun 21, 2022
1 parent 2b2b3ed commit 3662b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtubesearchpython/core/transcript.py
Expand Up @@ -69,7 +69,7 @@ def extract_transcript(self):
j = {
"startMs": getValue(segment, ["startMs"]),
"endMs": getValue(segment, ["endMs"]),
"text": getValue(segment, ["snippet", "simpleText"]),
"text": getValue(segment, ["snippet", "runs", 0, "text"]),
"startTime": getValue(segment, ["startTimeText", "simpleText"])
}
segments.append(j)
Expand Down

0 comments on commit 3662b7e

Please sign in to comment.