MCPcopy Index your code
hub / github.com/BKSalman/ytdlp-gui

github.com/BKSalman/ytdlp-gui @v3.4.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v3.4.1 ↗ · + Follow
123 symbols 235 edges 16 files 20 documented · 16%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

ytdlp-gui

a GUI for yt-dlp written in Rust

Preview

image

Installation

Linux

NixOS (Flake)

you can use the flake.nix in the repo

in your flake.nix:

{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

    ytdlp-gui = {
      url = "github:bksalman/ytdlp-gui";
    };
  };

    outputs = { nixpkgs, ytdlp-gui, ...}:
    let
      system = "x86_64-linux";

      pkgs = import nixpkgs {
        inherit system;
        overlays = [
          ytdlp-gui.overlay
        ];
      };
    in
    {
      ...snip

then you can add it as a normal package, either to your home-manager or nixosConfiguration

Fedora

download the rpm package from the releases page then install it with sudo dnf localinstall <rpm_package_name>

Ubuntu

download the deb package from the releases page then install it with sudo apt install ./<deb_package_name>

Arch

Available in the AUR ytdlp-gui

other distributions

1- download yt-dlp

either

      a- from your distribution repo

      b- or download the binary, then move it to your bin directory, and make it an executable by running chmod +x <bin_file>

2- download ffmpeg or ffmpeg-free from your distribution repos

3- download the ytdlp-gui binary from the realeases page

Windows

just download the zip file from the releases page, extract it in a subfolder and start the ytdlp-gui.exe

Build from source

to build from source you need to have cargo and rustc, you can install them through rustup (rust toolchain manager), or from your distribution repos, whatever you like

after that run the following commands:

# clone the repository to "ytdlp-gui" folder
git clone https://github.com/BKSalman/ytdlp-gui
# enter the folder
cd ytdlp-gui
# you can either build the project using this
cargo build
# or build it in release mode for better performance
cargo build -r

then the binary will be either in <project-root>/target/debug/ytdlp-gui or <project-root>/target/release/ytdlp-gui

and you can either run it directly:

# from project root
./target/release/ytdlp-gui

or using cargo:

cargo r
# or for release mode
cargo r -r

Configuration

Since v3.0.0 the application has a settings tab which will contain the settings that the user will most likely want to configure

The settings are located in <config_dir>/ytdlp-gui/config.toml

Note: the quality/format options get automatically saved when pressing the download button

Contribution

All contribution forms are welcomed, whether it's Pull requests, Issues (bug reports/enhancement requests)

However, I might not be quick to reply to them, or implement the requested stuff

But I will do my best 👍

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Method 54
Function 40
Class 13
Enum 13
Interface 3

Languages

Rust100%

Modules by API surface

src/checkbox.rs35 symbols
src/lib.rs15 symbols
xtask/src/lib.rs12 symbols
src/media_options.rs12 symbols
xtask/src/main.rs9 symbols
src/update.rs6 symbols
src/progress.rs6 symbols
src/command.rs6 symbols
src/app.rs6 symbols
src/theme.rs5 symbols
src/i18n.rs5 symbols
src/sponsorblock.rs2 symbols

For agents

$ claude mcp add ytdlp-gui \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page