Error 153

Smart Net

Member
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>
 
Top