Is this freelance work what you were looking for?

Help starting python on local computer and code to get youtube transcriptions

I am a long term but intermittent programmer with limited skills using visual basic and I need help to learn Python so that I can download voice transcriptions from YouTube.  I downloaded the latest Python and opened the IDLE environment.  I then tried to do the following that I got from Grok but apparently you don't put in "pip install youtube_transcript_api " into the Python editor. In a nutshell, I want to download transcripts from YouTube when given a list of YouTube links.  I would like to get both transcript versions that includes timestamps and without timestamps. Long-term I would like to figure out ways to correct mistakes in the transcriptions but first I would like to get the transcriptions.  I would also like to figure out how AI can summarize topics when prompted with questions related to the transcriptions. I got this from Grok to get me started (just showing a small portion): Option B: Python with youtube_transcript_api Requirements: Python, pip install youtube_transcript_api. How to Do It: Install the library: bash pip install youtube_transcript_api Run this script: python from youtube_transcript_api import YouTubeTranscriptApi video_links = ["https://www.youtube.com/watch?v=VIDEO_ID1", "https://www.youtube.com/watch?v=VIDEO_ID2"] video_ids = [link.split("v=")[1] for link in video_links] for video_id in video_ids: ........

Already registered, click here to login.