-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Grabbing a transcript of a short snippet of a YouTube video with MacW…
…hisper
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Grabbing a transcript of a short snippet of a YouTube video with MacWhisper | ||
|
||
I grabbed [a quote](https://simonwillison.net/2023/Dec/1/jeremy-howard/) from a transcript of a snippet of a YouTube video today for my blog. | ||
|
||
I use the [MacWhisper](https://goodsnooze.gumroad.com/l/macwhisper) macOS desktop app to run Whisper. It's a very pleasant GUI wrapper around the Whisper transcription model. | ||
|
||
Usually I pull a full YouTube video using [yt-dlp](https://github.com/yt-dlp/yt-dlp) and then drop the resulting `.mp4` file into MacWhisper to transcribe the whole thing. | ||
|
||
Today I realized there's a faster way if I just want a transcript of a few minutes from the video: | ||
|
||
1. Open MacWhisper | ||
2. Hit the "New Recording" button and then "Start Recording" | ||
3. Hit "Play" on the YouTube video | ||
4. Wait until the end of the snippet and hit "Stop Recording" in MacWhisper | ||
5. Hit "Transcribe Reporting" and wait a few seconds or minutes depending on the length of the snippet | ||
|
||
Once the transcription is done you can hit the "Copy" button to copy out the text - I then usually drop it into VS Code to make a few minor edits. | ||
|
||
Here's a GIF of the whole process: | ||
|
||
![Animated GIF illustrating each of the above steps](https://static.simonwillison.net/static/2023/macwhisper.gif) |