I need to insert autoplaying YouTube video in Markdown, VS Code, how can I do it?

I need to insert autoplaying YouTube video in Markdown, VS Code, how can I do it?

Open YouTube video in your browser → Press Share → Embed → Copy iframe and paste it in your markdown document.
Or just copy code the below and replace YOUTUBE_LINK with your link
<center>
<iframe width="560"
height="315"
src="YOUTUBE_LINK"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</center>