2
18/10/2024 2:11 pm
Rozpoczęcie tematu
Hi, I was wondering if there's a way to play YouTube videos in high quality by default? Whenever I upload a video to YouTube, it’s not in HD, but I want it to be HD in the embedded version.
Thanks!
1 Answer
2
18/10/2024 2:13 pm
Actually it is very easy my friend!
If you want to embed a video in high quality simply add &vq=hd720 after rel="0".
For example, if you want to embed this video:
<iframe width="420" height="315" src="https://www.youtube.com/embed/O8D7eBXP2Os?rel=0" frameborder="0" allowfullscreen></iframe>
add &vq=hd720 after rel=0;
So the code will look like this:
<iframe width="420" height="315" src="https://www.youtube.com/embed/O8D7eBXP2Os?rel=0&vq=hd720" frameborder="0" allowfullscreen></iframe>