File size: 729 Bytes
933ae1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Baixar Vídeo do YouTube</title>
<script>
async function baixarVideo() {
const url = document.getElementById("url").value;
const response = await fetch(`/download?url=${encodeURIComponent(url)}`);
const result = await response.text();
alert(result);
}
</script>
</head>
<body>
<h1>Baixar Vídeo do YouTube</h1>
<label for="url">URL do vídeo:</label>
<input type="text" id="url" placeholder="Insira o URL do vídeo">
<button onclick="baixarVideo()">Baixar Vídeo</button>
</body>
</html>
|