Skip to content

Instantly share code, notes, and snippets.

@dfinke
Last active September 17, 2023 12:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dfinke/582901564859cd4e55ddd5bd968be14c to your computer and use it in GitHub Desktop.
Save dfinke/582901564859cd4e55ddd5bd968be14c to your computer and use it in GitHub Desktop.
This PowerShell script cleans up a YouTube transcript, from the Clipboard, for meeting notes
#Requires -Modules PowerShellAI
$str = Get-Clipboard
$prompt = "
Clean up this copy-paste from YouTube and make it suitable for pasting into Notion as meeting notes.
- Remove time stamps
- Remove line breaks
- Grammar, spell check and proper punctuation
$str
"
gpt $prompt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment