vbvbot9117 commited on
Commit
11b4853
·
verified ·
1 Parent(s): 76bc4e4

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +145 -0
index.html ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>YouTube Audio Downloader</title>
7
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ </head>
10
+ <body class="bg-gray-100 min-h-screen">
11
+ <div class="container mx-auto px-4 py-8">
12
+ <div class="max-w-2xl mx-auto">
13
+ <h1 class="text-3xl font-bold text-center mb-8 text-gray-800">YouTube Audio Downloader</h1>
14
+
15
+ <!-- Input Form -->
16
+ <div class="bg-white rounded-lg shadow-md p-6 mb-6">
17
+ <div class="mb-4">
18
+ <input type="text" id="youtubeUrl" placeholder="Paste YouTube URL here"
19
+ class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
20
+ </div>
21
+ <button onclick="getVideoInfo()"
22
+ class="w-full bg-blue-500 text-white py-2 px-4 rounded-lg hover:bg-blue-600 transition duration-200">
23
+ Get Video Info
24
+ </button>
25
+ </div>
26
+
27
+ <!-- Video Info Section -->
28
+ <div id="videoInfo" class="hidden bg-white rounded-lg shadow-md p-6 mb-6">
29
+ <div id="videoDetails" class="mb-4">
30
+ <div id="thumbnailContainer" class="mb-4"></div>
31
+ <h2 id="videoTitle" class="text-xl font-semibold mb-2"></h2>
32
+ <p id="channelName" class="text-gray-600"></p>
33
+ <p id="duration" class="text-gray-600"></p>
34
+ </div>
35
+ <button onclick="downloadAudio()"
36
+ class="w-full bg-green-500 text-white py-2 px-4 rounded-lg hover:bg-green-600 transition duration-200">
37
+ Download Audio
38
+ </button>
39
+ </div>
40
+
41
+ <!-- Loading Indicator -->
42
+ <div id="loading" class="hidden">
43
+ <div class="flex justify-center items-center">
44
+ <div class="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-500"></div>
45
+ </div>
46
+ </div>
47
+
48
+ <!-- Error Message -->
49
+ <div id="errorMessage" class="hidden bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative mb-4">
50
+ </div>
51
+ </div>
52
+ </div>
53
+
54
+ <script>
55
+ function showLoading() {
56
+ $('#loading').removeClass('hidden');
57
+ }
58
+
59
+ function hideLoading() {
60
+ $('#loading').addClass('hidden');
61
+ }
62
+
63
+ function showError(message) {
64
+ $('#errorMessage').text(message).removeClass('hidden');
65
+ setTimeout(() => {
66
+ $('#errorMessage').addClass('hidden');
67
+ }, 5000);
68
+ }
69
+
70
+ function formatDuration(seconds) {
71
+ const minutes = Math.floor(seconds / 60);
72
+ const remainingSeconds = seconds % 60;
73
+ return `${minutes}:${remainingSeconds.toString().padStart(2, '0')}`;
74
+ }
75
+
76
+ function getVideoInfo() {
77
+ const url = $('#youtubeUrl').val().trim();
78
+ if (!url) {
79
+ showError('Please enter a YouTube URL');
80
+ return;
81
+ }
82
+
83
+ showLoading();
84
+ $('#videoInfo').addClass('hidden');
85
+
86
+ $.ajax({
87
+ url: '/get-info',
88
+ type: 'POST',
89
+ contentType: 'application/json',
90
+ data: JSON.stringify({ url: url }),
91
+ success: function(response) {
92
+ $('#thumbnailContainer').html(`
93
+ <img src="${response.thumbnail}" alt="Video thumbnail" class="w-full rounded-lg">
94
+ `);
95
+ $('#videoTitle').text(response.title);
96
+ $('#channelName').text(`Channel: ${response.channel}`);
97
+ $('#duration').text(`Duration: ${formatDuration(response.duration)}`);
98
+ $('#videoInfo').removeClass('hidden');
99
+ hideLoading();
100
+ },
101
+ error: function(xhr) {
102
+ showError(xhr.responseJSON?.error || 'Failed to get video information');
103
+ hideLoading();
104
+ }
105
+ });
106
+ }
107
+
108
+ function downloadAudio() {
109
+ const url = $('#youtubeUrl').val().trim();
110
+ if (!url) {
111
+ showError('Please enter a YouTube URL');
112
+ return;
113
+ }
114
+
115
+ showLoading();
116
+
117
+ $.ajax({
118
+ url: '/download',
119
+ type: 'POST',
120
+ contentType: 'application/json',
121
+ data: JSON.stringify({ url: url }),
122
+ xhrFields: {
123
+ responseType: 'blob'
124
+ },
125
+ success: function(response) {
126
+ const blob = new Blob([response], { type: 'audio/mp3' });
127
+ const downloadUrl = window.URL.createObjectURL(blob);
128
+ const a = document.createElement('a');
129
+ a.style.display = 'none';
130
+ a.href = downloadUrl;
131
+ a.download = $('#videoTitle').text() + '.mp3';
132
+ document.body.appendChild(a);
133
+ a.click();
134
+ window.URL.revokeObjectURL(downloadUrl);
135
+ hideLoading();
136
+ },
137
+ error: function(xhr) {
138
+ showError('Failed to download audio');
139
+ hideLoading();
140
+ }
141
+ });
142
+ }
143
+ </script>
144
+ </body>
145
+ </html>