NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.59k stars 13.74k forks source link

MeTube - Youtube-DL Web GUI #178051

Open alnmy opened 2 years ago

alnmy commented 2 years ago

Project description MeTube is a Web GUI for yt-dlp which allows you to download videos online from dozens of sites.

Metadata

dukzcry2 commented 3 months ago

NUR package https://github.com/nix-community/nur-combined/blob/master/repos/dukzcry/pkgs/metube.nix#L40 module https://github.com/nix-community/nur-combined/blob/master/repos/dukzcry/modules/metube.nix usage

  services.metube.enable = true;
  services.metube.settings = {
    PORT = "8081";
    DOWNLOAD_DIR = "/data/youtube";
    DELETE_FILE_ON_TRASHCAN = "true";
  };
  services.metube.ytdlSettings = {
    writethumbnail = true;
    postprocessors = [
      {key = "FFmpegMetadata"; add_metadata = "True";}
      {key = "EmbedThumbnail";}
      {key = "FFmpegThumbnailsConvertor"; format = "jpg"; when = "before_dl"; }
      {key = "SponsorBlock"; categories = [ "sponsor" ]; }
      {key = "ModifyChapters"; remove_sponsor_segments = [ "sponsor" ]; }
    ];
  };