I made YoutubeDownloader main.py code run yt_dlp instead of pytube. It also adds the option to choose the quality of the video (1080p+, 720p, 480p). #3567
Gozavo1
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Im not a programmer, but at least it works. If someone wants to improve it, feel free and pls send me the better version xD.
-- coding: utf-8 --
import os
from pathlib import Path
from flowlauncher import FlowLauncher
import yt_dlp
class YoutubeDownload(FlowLauncher):
class QuietLogger:
def debug(self, msg): pass
def warning(self, msg): pass
def error(self, msg): pass
if name == "main":
YoutubeDownload()
Beta Was this translation helpful? Give feedback.
All reactions