Closed jaredsburrows closed 1 year ago
If by transcript you mean downloading the closed captions and translate them it is already possible:
final manifest = await yt.videos.closedCaptions
.getManifest(videoId);
final trackInfo = manifest
.getByLanguage('en', autoGenerated: true) // Get the autogenerated en track
.first
.autoTranslate('it'); // Translateto italian
final track = await yt.videos.closedCaptions.get(trackInfo);
please reopen if I got this wrong.
Add support for downloading transcripts