Smart Net
Member
Video player configuration error when using youtube at browser source! Anyone else?! try this to check: https://www.youtube.com/embed/DZ2hev
thanks, but that was posible before. not sure if get it right "top level document"You cannot use YouTube embeds as a top level document.
You are awesome, sir. This worked for me! Thanks!Finaly I found the way to pass error 153 and using html file with embeded link:
<!DOCTYPE html>
<html>
<head>
<title>OBS YouTube Playlist Loop</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden; /* Important: Hides scrollbars */
}
iframe {
display: block;
border: none;
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<iframe
src="https://www.youtube-nocookie.com/em...list=PLneyiK3YkPtj0jvZoCHmLGPhoZoA_uSnw&rel=0"
allow="autoplay; encrypted-media"
allowfullscreen
referrerpolicy="strict-origin-when-cross-origin">
</iframe>
</body>
</html>