youtube-to-html5-loader icon indicating copy to clipboard operation
youtube-to-html5-loader copied to clipboard

Doesn't support live video stream

Open suhailtajshaik opened this issue 3 years ago • 1 comments

I see following issues:

  • Live stream is not supported or not documented.
    • Eg: https://youtu.be/SgrhYlzo3QE

Hear is what I have:

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>Video</title>
		<style>
			* {
				margin: 0%;
				padding: 0%;
				overflow: hidden;
			}
		</style>
<script src="https://cdn.jsdelivr.net/npm/@thelevicole/[email protected]/dist/YouTubeToHtml5.min.js"></script>
		<script>
			const YVideo = new YouTubeToHtml5({ withAudio: true });
		</script>
	</head>

	<body>
		<video
			controls
			withAudio="true"
			data-yt2html5="https://youtu.be/ZEyAs3NWH4A"
			style="height: 100vh; width: 100vw"
		></video>
		<script>
			YVideo.load();
		</script>
	</body>
</html>

suhailtajshaik avatar Feb 26 '21 09:02 suhailtajshaik

it's not supported @thelevicole ?

antl3x avatar Nov 12 '21 16:11 antl3x