RESOURCES
Here are the two snippets you need.
1) For YouTube Shorts → normal embed
When you have a Shorts link like:
https://www.youtube.com/shorts/VIDEO_ID
Change it to this format for embedding:
https://www.youtube-nocookie.com/embed/VIDEO_ID
Example full iframe you can reuse and just replace VIDEO_ID each time:
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/VIDEO_ID" title="YouTube video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen ></iframe>
2) For Google Drive video → replace FILE_ID
Basic iframe pattern (replace FILE_ID with your Drive file ID):
<iframe src="https://drive.google.com/file/d/FILE_ID/preview" width="640" height="360" allow="autoplay" ></ifram
Kodee
Here are short labels you can store with each snippet.
1) YouTube Shorts → embed
Label:
YT embed (replace VIDEO_ID)
Snippet:
<!-- YT embed (replace VIDEO_ID) --> <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/VIDEO_ID" title="YouTube video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen ></iframe>
2) Google Drive video → embed
Label:
Drive video embed (replace FILE_ID)
Snippet:
<!-- Drive video embed (replace FILE_ID) --> <iframe src="https://drive.google.com/file/d/FILE_ID/preview" width="640" height="360" allow="autoplay" ></iframe>
<!-- YT embed
<!-- YT embed (replace VIDEO_ID) --> <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/VIDEO_ID" title="YouTube video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen ></iframe> <!-- Drive video embed (replace FILE_ID) --> <iframe src="https://drive.google.com/file/d/FILE_ID/preview" width="640" height="360" allow="autoplay" ></iframe>
Whenever you need them, open this page in the editor, copy the needed snippet, replace VIDEO_ID or FILE_ID, and paste it into your Embed code element on any page.