├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── assets ├── gui_screenshot.png ├── gui_screenshot_linux.png ├── img.png ├── ytdl.ico └── ytdl.png ├── download_youtube_video.py ├── gui.py ├── pyinstaller.spec ├── requirements.txt └── script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/README.md -------------------------------------------------------------------------------- /assets/gui_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/assets/gui_screenshot.png -------------------------------------------------------------------------------- /assets/gui_screenshot_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/assets/gui_screenshot_linux.png -------------------------------------------------------------------------------- /assets/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/assets/img.png -------------------------------------------------------------------------------- /assets/ytdl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/assets/ytdl.ico -------------------------------------------------------------------------------- /assets/ytdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/assets/ytdl.png -------------------------------------------------------------------------------- /download_youtube_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/download_youtube_video.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/gui.py -------------------------------------------------------------------------------- /pyinstaller.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/pyinstaller.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pytube 3 | -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraza007/videodownloader/HEAD/script.py --------------------------------------------------------------------------------