# ytDownloader
[](https://flathub.org/apps/details/me.aandrew.ytdownloader)
[](https://github.com/aandrew-me/ytDownloader/releases)
[](https://github.com/aandrew-me/ytDownloader/releases/latest)
[](https://flathub.org/apps/io.github.aandrew_me.ytdn)
[](https://snapcraft.io/ytdownloader)


A modern GUI video and audio downloader supporting [hundreds of sites](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)
[](https://snapcraft.io/ytdownloader)
[](https://github.com/aandrew-me/ytDownloader/releases/latest/download/YTDownloader_Linux.AppImage)
## Features π
β
 Supports hundreds of sites including Youtube, Facebook, Instagram, Tiktok, Twitter and so on.
β
 Multiple themes
β
 Video Compressor with Hardware Acceleration
β
 Advanced options like Range Selection, Subtitles
β
 Download playlists
β
 Available on Linux, Windows & macOS
β
 Fast download speeds
β
 And of-course no trackers or ads
## Screenshots



# Installation
## Windows πͺ
-   **Traditional way**
    Download and install the exe or msi file. Exe file lets you choose custom download location, msi file doesn't ask for location. Windows defender may show a popup saying **Windows Protected Your PC**. Just click on **More info** and click on **Run Anyway**
-   **Chocolatey**
    App can be installed from [Chocolatey](https://community.chocolatey.org/packages/ytdownloader) using the following command
    ```
    choco install ytdownloader
    ```
-   **Scoop**
    App can be installed with [Scoop](https://scoop.sh) using the following command
    ```
    scoop install https://raw.githubusercontent.com/aandrew-me/ytDownloader/main/ytdownloader.json
    ```
-   **Winget**
    App can be installed with [Winget](https://github.com/microsoft/winget-cli) using the following command
    ```
    winget install aandrew-me.ytDownloader
    ```
## Linux π§
Linux has several options available - Flatpak, AppImage and Snap.
Flatpak is recommended. For arm processors, download from flathub.
-   ### AppImage
    **AppImage** format is supported on most Linux distros and has Auto-Update support.
    It just needs to be executed after downloading. See more about [AppImages here](https://appimage.org/).
    [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) is recommended for integrating AppImages.
-   ### Flatpak
    ```
    flatpak install flathub io.github.aandrew_me.ytdn
    ```
-   ### Snapcraft
    ```
    sudo snap install ytdownloader
    ```
## macOS π
Since the app is not signed, when you will try to open the app, macOS will not allow you to open it. 
You need to open terminal and execute:
```
sudo xattr -r -d com.apple.quarantine /Applications/YTDownloader.app 
```
You will also need to install `yt-dlp` with [homebrew](https://brew.sh/)
```
brew install yt-dlp
```
## Internationalization (Localization) π
Translations into other languages would be highly appreciated. If you want to help translating the app to other languages, you can join from [here](https://crwd.in/ytdownloader). Open a new issue and that language will be added to Crowdin. Please don't make pull requests with json files, instead use Crowdin.
[](https://crowdin.com/project/ytdownloader)
### β
 Available languages
| Name                | Status |
| ------------------- | ------ |
| Arabic              | βοΈ     |
| English             | βοΈ     |
| Simplified Chinese  | βοΈ     |
| Finnish             | βοΈ     |
| French              | βοΈ     |
| German              | βοΈ     |
| Greek               | βοΈ     |
| Hungarian           | βοΈ     |
| Italian             | βοΈ     |
| Japanese            | βοΈ     |
| Persian             | βοΈ     |
| Polish              | βοΈ     |
| Portuguese (Brazil) | βοΈ     |
| Russian             | βοΈ     |
| Spanish             | βοΈ     |
| Turkish             | βοΈ     |
| Ukrainian           | βοΈ     |
| Vietnamese          | βοΈ     |
Thanks to [nxjosephofficial](https://github.com/nxjosephofficial), [LINUX-SAUNA](https://t.me/linuxsauna), [Proxycon](https://github.com/proxycon), [albanobattistella](https://github.com/albanobattistella), [TheBlueQuasar](https://github.com/TheBlueQuasar), [MrQuerter](https://github.com/MrQuerter), [KotoWhiskas](https://github.com/KotoWhiskas), [AndrΓ©](https://github.com/andre1828), [haggen88](https://github.com/haggen88), [XfedeX](https://github.com/XfedeX), [Jok3r](https://github.com/th3knv), [TitouanReal](https://github.com/TitouanReal), [soredake](https://github.com/soredake), [yoi](https://github.com/thiennguyenqn), [HowlingWerewolf](https://github.com/HowlingWerewolf), [Kum](https://github.com/kum4423), [Mohammed Bakry](https://crowdin.com/profile/m7md_b4kry), [Huang Bingfeng](https://github.com/jackiotyu), [Abhinav](https://github.com/abhixdd) and others for helping.
## Used technologies
-   [yt-dlp](https://github.com/yt-dlp/yt-dlp)
-   [Electron](https://www.electronjs.org/)
-   [ffmpeg](https://ffmpeg.org/)
-   [nodeJS](https://nodejs.org/en/)
-   [flaticon](https://www.flaticon.com/)
## For building or running from source code
[Nodejs](https://nodejs.org/) (along with npm) needs to be installed.
Required commands to get started.
```
git clone https://github.com/aandrew-me/ytDownloader.git
cd ytDownloader
npm i
```
To run with [Electron](https://www.electronjs.org/) :
```
npm start
```
You need to download ffmpeg and put it in the root directory of the project. If you don't need to build for arm processor, you can download ffmpeg by executing any of the files - linux.sh / mac.sh / windows.sh depending on the platform. Otherwise you need to download ffmpeg from [here](https://github.com/yt-dlp/FFmpeg-Builds/releases) for windows/linux and from [here](http://www.osxexperts.net/) for mac (not tested)
To build for Linux (It will create packages as specified in package.json). The builds are stored in **release** folder.
```
npm run linux
```
To build for Windows
```
npm run windows
```
To build for macOS
```
npm run mac
```
If you only want to build for one format, you can do
```
npx electron-builder -l appimage
```
It will just create a linux appimage build.