├── .gitignore ├── AppIcon.icns ├── LICENSE ├── README.md ├── YTDownloader.py ├── YTDownloaderTK.py ├── images ├── exampleImage.png └── exampleImageOld.png ├── logo.png ├── requirements.txt ├── resources ├── ffmpeg └── ffprobe └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/AppIcon.icns -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/README.md -------------------------------------------------------------------------------- /YTDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/YTDownloader.py -------------------------------------------------------------------------------- /YTDownloaderTK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/YTDownloaderTK.py -------------------------------------------------------------------------------- /images/exampleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/images/exampleImage.png -------------------------------------------------------------------------------- /images/exampleImageOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/images/exampleImageOld.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/resources/ffmpeg -------------------------------------------------------------------------------- /resources/ffprobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/resources/ffprobe -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaSillano/VidDownloader/HEAD/setup.py --------------------------------------------------------------------------------