File size: 15,176 Bytes
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a7f622b
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
 
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
 
 
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
 
 
 
 
 
 
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
 
312b1c2
758e755
 
d7688de
758e755
 
d7688de
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
758e755
 
 
 
 
 
 
 
 
 
 
 
 
d7688de
758e755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b414ddc
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
import gradio as gr
import yt_dlp
import os
import tempfile
import shutil
from pathlib import Path
import re

class YouTubeDownloader:
    def __init__(self):
        self.download_dir = tempfile.mkdtemp()
        
    def is_valid_youtube_url(self, url):
        """Validate if the URL is a valid YouTube URL"""
        youtube_regex = re.compile(
            r'(https?://)?(www\.)?(youtube|youtu|youtube-nocookie)\.(com|be)/'
            r'(watch\?v=|embed/|v/|.+\?v=)?([^&=%\?]{11})'
        )
        return youtube_regex.match(url) is not None
    
    def get_video_info(self, url, progress=gr.Progress(),cookiefile=None):
        """Get detailed video information without downloading"""
        if not url or not url.strip():
            return None, "❌ Please enter a YouTube URL"
        
        if not self.is_valid_youtube_url(url):
            return None, "❌ Invalid YouTube URL. Please enter a valid YouTube video URL"
        
        try:
            progress(0.2, desc="Fetching video information...")
            
            # Configure yt-dlp options for info extraction
            ydl_opts = {
                'noplaylist': True,
                'extract_flat': False,
            }
            if cookiefile:
                ydl_opts['cookiefile'] = cookiefile
            
            with yt_dlp.YoutubeDL(ydl_opts) as ydl:
                try:
                    info = ydl.extract_info(url, download=False)
                    
                    # Extract detailed information
                    video_info = {
                        'title': info.get('title', 'Unknown'),
                        'description': info.get('description', 'No description available'),
                        'duration': info.get('duration', 0),
                        'view_count': info.get('view_count', 0),
                        'like_count': info.get('like_count', 0),
                        'comment_count': info.get('comment_count', 0),
                        'upload_date': info.get('upload_date', ''),
                        'uploader': info.get('uploader', 'Unknown'),
                        'channel': info.get('channel', 'Unknown'),
                        'channel_followers': info.get('channel_follower_count', 0),
                        'tags': info.get('tags', []),
                        'categories': info.get('categories', []),
                        'thumbnail': info.get('thumbnail', ''),
                        'webpage_url': info.get('webpage_url', url)
                    }
                    
                    progress(1.0, desc="Information retrieved!")
                    
                    return video_info, "βœ… Video information retrieved successfully"
                    
                except yt_dlp.DownloadError as e:
                    error_msg = str(e)
                    if "Video unavailable" in error_msg:
                        return None, "❌ Video is unavailable or private"
                    elif "age-restricted" in error_msg.lower():
                        return None, "❌ Video is age-restricted"
                    else:
                        return None, f"❌ Failed to get video info: {error_msg}"
                        
        except Exception as e:
            return None, f"❌ An unexpected error occurred: {str(e)}"

    def download_video(self, url, progress=gr.Progress(),cookiefile=None):
        """Download YouTube video using yt-dlp"""
        if not url or not url.strip():
            return None, "❌ Please enter a YouTube URL"
        
        if not self.is_valid_youtube_url(url):
            return None, "❌ Invalid YouTube URL. Please enter a valid YouTube video URL"
        
        try:
            progress(0.1, desc="Initializing download...")
            
            # Configure yt-dlp options
            ydl_opts = {
                'format': 'best[ext=mp4]/best',  # Prefer mp4 format
                'outtmpl': os.path.join(self.download_dir, '%(title)s.%(ext)s'),
                'noplaylist': True,  # Download only single video, not playlist
            }
            if cookiefile:
                ydl_opts['cookiefile'] = cookiefile
                
            progress(0.3, desc="Fetching video information...")
            
            with yt_dlp.YoutubeDL(ydl_opts) as ydl:
                # Get video info first
                try:
                    info = ydl.extract_info(url, download=False)
                    video_title = info.get('title', 'Unknown')
                    duration = info.get('duration', 0)
                    
                    progress(0.5, desc=f"Downloading: {video_title[:50]}...")
                    
                    # Download the video
                    ydl.download([url])
                    
                    progress(0.9, desc="Finalizing download...")
                    
                    # Find the downloaded file
                    downloaded_files = list(Path(self.download_dir).glob('*'))
                    if downloaded_files:
                        downloaded_file = downloaded_files[0]
                        file_size = downloaded_file.stat().st_size / (1024 * 1024)  # Size in MB
                        
                        progress(1.0, desc="Download completed!")
                        
                        success_message = f"βœ… Successfully downloaded: {video_title}\n"
                        success_message += f"πŸ“ File size: {file_size:.1f} MB\n"
                        success_message += f"⏱️ Duration: {duration//60}:{duration%60:02d}" if duration else ""
                        
                        return str(downloaded_file), success_message
                    else:
                        return None, "❌ Download completed but file not found"
                        
                except yt_dlp.DownloadError as e:
                    error_msg = str(e)
                    if "Video unavailable" in error_msg:
                        return None, "❌ Video is unavailable or private"
                    elif "age-restricted" in error_msg.lower():
                        return None, "❌ Video is age-restricted and cannot be downloaded"
                    elif "copyright" in error_msg.lower():
                        return None, "❌ Video cannot be downloaded due to copyright restrictions"
                    else:
                        return None, f"❌ Download failed: {error_msg}"
                        
        except Exception as e:
            return None, f"❌ An unexpected error occurred: {str(e)}"
    
    def format_video_info(self, video_info):
        """Format video information for display"""
        if not video_info:
            return "No video information available"
        
        # Format duration
        duration = video_info.get('duration', 0)
        if duration:
            minutes = duration // 60
            seconds = duration % 60
            duration_str = f"{minutes}:{seconds:02d}"
        else:
            duration_str = "Unknown"
        
        # Format upload date
        upload_date = video_info.get('upload_date', '')
        if upload_date and len(upload_date) == 8:
            formatted_date = f"{upload_date[6:8]}/{upload_date[4:6]}/{upload_date[:4]}"
        else:
            formatted_date = "Unknown"
        
        # Format numbers with commas
        def format_number(num):
            if isinstance(num, (int, float)) and num > 0:
                return f"{int(num):,}"
            return "0"
        
        # Get video details
        title = video_info.get('title', 'Unknown')
        channel = video_info.get('channel', 'Unknown')
        uploader = video_info.get('uploader', 'Unknown')
        views = format_number(video_info.get('view_count', 0))
        likes = format_number(video_info.get('like_count', 0))
        comments = format_number(video_info.get('comment_count', 0))
        subscribers = format_number(video_info.get('channel_followers', 0))
        description = video_info.get('description', 'No description available')
        tags = video_info.get('tags', [])
        
        # Create detailed analysis
        info_text = f"""VIDEO ANALYSIS RESULTS
========================

BASIC INFORMATION:
- Title: {title}
- Channel: {channel}
- Uploader: {uploader}
- Duration: {duration_str}
- Upload Date: {formatted_date}

ENGAGEMENT STATISTICS:
- Total Views: {views}
- Total Likes: {likes}
- Total Comments: {comments}
- Channel Subscribers: {subscribers}

CONTENT TAGS:
{', '.join(tags[:15]) if tags else 'No tags available'}

VIDEO DESCRIPTION:
{description[:1000]}{'...(truncated)' if len(description) > 1000 else ''}

ANALYSIS SUMMARY:
- Video has {views} views with {likes} likes
- Engagement rate based on likes to views ratio
- Video duration is {duration_str}
- Posted on {formatted_date}
- Contains {len(tags)} tags for discoverability"""
        
        return info_text
    
    def cleanup(self):
        """Clean up temporary files"""
        try:
            shutil.rmtree(self.download_dir, ignore_errors=True)
        except:
            pass

# Initialize downloader
downloader = YouTubeDownloader()

# Create Gradio interface
def create_interface():
    with gr.Blocks(
        title="YouTube Video Downloader & Analyzer",
        theme="soft",
        css="""
        .container {
            max-width: 900px;
            margin: 0 auto;
        }
        .header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .instructions {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        """
    ) as demo:
        
        gr.HTML("""
        <div class="header">
            <h1>YouTube Video Downloader & Analyzer</h1>
            <p>Download YouTube videos and get detailed analysis results</p>
        </div>
        """)
        
        gr.HTML("""
        <div class="instructions">
            <h3>How to use:</h3>
            <ul>
                <li>1. Enter a YouTube video URL</li>
                <li>2. Click "Download Video" to download the video file</li>
                <li>3. After download, click "Show Analysis Results" to see detailed video information</li>
                <li>4. View comprehensive statistics including views, likes, comments, description, and more</li>
            </ul>
            <p><strong>Note:</strong> This tool respects YouTube's terms of service. Only download videos you have permission to download.</p>
        </div>
        """)
        
        # State to store video info
        video_info_state = gr.State(value=None)
        
        url_input = gr.Textbox(
            label="YouTube URL",
            placeholder="https://www.youtube.com/watch?v=...",
            lines=1,
            max_lines=1
        )

        cookies_input = gr.File(
            label="Upload cookies.txt (optional for age-restricted/protected videos)",
            type="filepath",
            file_types=[".txt"],
            visible=True
        )
        
        download_btn = gr.Button(
            "Download Video",
            variant="primary",
            size="lg"
        )
        
        status_output = gr.Textbox(
            label="Download Status",
            lines=3,
            max_lines=5,
            interactive=False
        )
        
        file_output = gr.File(
            label="Downloaded Video",
            visible=False
        )
        
        analysis_btn = gr.Button(
            "Show Analysis Results",
            variant="secondary",
            size="lg",
            visible=False
        )
        
        analysis_output = gr.Textbox(
            label="Video Analysis Results",
            lines=20,
            max_lines=25,
            interactive=False,
            visible=False
        )
        
        # Event handlers
        def handle_download(url):
            if not url or not url.strip():
                return "Please enter a YouTube URL", gr.File(visible=False), gr.Button(visible=False), None

           # Set cookies path if provided
            cookiefile = cookies_path if cookies_path and os.path.exists(cookies_path) else None 
            
            # First get video info and store it
            video_info, info_message = downloader.get_video_info(url,cookiefile=cookiefile)
            
            # Then download the video
            file_path, download_message = downloader.download_video(url,cookiefile=cookiefile)
            
            if file_path and video_info:
                success_message = f"{download_message}\n\nVideo downloaded successfully! Click 'Show Analysis Results' to see detailed information."
                return (
                    success_message,
                    gr.File(value=file_path, visible=True),
                    gr.Button(visible=True),
                    video_info
                )
            elif file_path:
                return (
                    f"{download_message}\n\nVideo downloaded but analysis data unavailable.",
                    gr.File(value=file_path, visible=True),
                    gr.Button(visible=False),
                    None
                )
            else:
                return (
                    download_message,
                    gr.File(visible=False),
                    gr.Button(visible=False),
                    None
                )
        
        def show_analysis(video_info):
            if video_info:
                formatted_info = downloader.format_video_info(video_info)
                return formatted_info, gr.Textbox(visible=True)
            else:
                return "No analysis data available.", gr.Textbox(visible=True)
        
        # Button click events
        download_btn.click(
            fn=handle_download,
            inputs=[url_input,cookies_input],
            outputs=[status_output, file_output, analysis_btn, video_info_state],
            show_progress="full"
        )
        
        analysis_btn.click(
            fn=show_analysis,
            inputs=[video_info_state],
            outputs=[analysis_output, analysis_output]
        )
        
        # Allow Enter key to trigger download
        url_input.submit(
            fn=handle_download,
            inputs=[url_input,cookies_input],
            outputs=[status_output, file_output, analysis_btn, video_info_state],
            show_progress="full"
        )
        
        gr.HTML("""
        <div style="margin-top: 2rem; text-align: center; color: #666;">
            <p><strong>Legal Notice:</strong> Please ensure you have the right to download the content. 
            Respect copyright laws and YouTube's terms of service.</p>
        </div>
        """)
    
    return demo

# Create and launch the app
if __name__ == "__main__":
    demo = create_interface()
    
    # Clean up on exit
    import atexit
    atexit.register(downloader.cleanup)
    
    # Launch the app
    demo.launch()
        #server_name="0.0.0.0",
        #server_port=5000,
        #share=False,
        #show_error=True