Build a Multimedia Player - Build a Multimedia Player

Tell us what’s happening:

Ignore the code tree it is temporary. I want to create a unique project. I am having trouble however finding how to get the mp3 and transcript files for a YouTube video. Does anyone know how i can do this?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Multimedia Player</title>
</head>

<body>
  <h1>Title</h1>
    <section>
      <h2></h2>
      <audio controls aria-label="">
      <source src="" type="audio/mpeg">
      </audio>
    </section>
    <h2>What is the Map Method?</h2>
     <video controls width="600" height="338" aria-label="" />
      <source src="https://youtu.be/rsy042XolPA" type="video/mp4"></source>
      <track src="" kind="captions" srclang="en" label="English" default=""/>
</video>
    <section>
      <h2>Transcript</h2>
      <p>.</p>
    </section>
    <section>

    </section>

</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0

Challenge Information:

Build a Multimedia Player - Build a Multimedia Player

on youtube. when you choose to share a video, there is an embed option, you need to take that code if you want to show the youtube video in your page

thank you for that information. I know how to embed i was asking more to find the caption and audio files for the youtube video because i cannot use the video url for the audio and captions

youtube does not allow for downloads in their TOS, so you would need to find something else to use here

Thank you again for the information. I used a different video to complete this project, but i do appreciate the response.