Skip to content

dis is a simple and fast tool to compress videos for Discord and other platforms.

License

Notifications You must be signed in to change notification settings

DontEatOreo/dis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

dis πŸŽ₯

GitHub license GitHub release GitHub issues

292BEC87

dis πŸŽ₯ is a simple CLI tool to compress videos for platforms like Discord and likewise. It uses YT-DLP to download videos from all sites that yt-dlp supports, such as YouTube, Twitter, Reddit, and more, and FFmpeg for compression. It comes with a rich and easy to use TUI mode for trimming videos

Nix Dev Environment

dis πŸŽ₯ comes with a nix develop environment that carries all the dependencies (dotnet, ffmpeg, and yt-dlp), allowing you to work on the project without having to manually install them. To activate this environment, all you need to do is:

  1. Have nix installed
  2. Have flakes and nix-command experimental features enabled
  3. Be in the same directory
  4. Run nix develop --impure

Building

.NET

All you need to do is run dotnet build, then a bin/ folder will be created that will contain all the build artifacts

Building a Single File Executable

You can build a single file executable which you can run without having dotnet preinstalled and that you can place anywhere. To do that all you need to do is:

  1. dotnet publish dis.csproj -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true --configuration Release --runtime <rid> (Know RIDs)
  2. Then you can find the executable at bin/Release/net8.0/<rid>/

Nix

Simply run nix build .#default

Alternatively you can also invoke a nix shell github:DontEatOreo/dis with the required packages to build dis πŸŽ₯

Updating dependencies on Nix

  1. Run nix run nixpkgs#dotnet-sdk -- restore --packages out
  2. Run the script nix-shell -p dotnet-sdk nuget-to-nix --run "nuget-to-nix out > deps.nix"
  3. Run formatter nix run nixpkgs#nixfmt-rfc-style -- deps.nix

Installation

To install dis πŸŽ₯, you need to have FFmpeg and YT-DLP installed on your system. You can download them from their official websites or use your package manager of choice.

You can then download the latest release of dis πŸŽ₯ from the Releases tab on GitHub. Alternatively, you can clone this repository and build the project yourself using dotnet publish.

If you're using Nix

Using nix profile

nix profile install github:DontEatOreo/dis

Using flakes

You will need to add dis πŸŽ₯ to your inputs and pass it down your outputs

{
  # ...

  inputs = {
    # ...
    dis.url = "github:DontEatOreo/dis";
    dis.inputs.nixpkgs.follows = "nixpkgs";
    # ...
  };

  outputs = {
    # ...
    dis,
    # ...
  }
}

After that in whichever .nix file is responsible for your packages you will need to add dis πŸŽ₯

Example:

{ pkgs, dis, ... }: {
  environment = {
    # ...
    systemPackages = builtins.attrValues {
        # ...
        dis = dis.packages.${pkgs.system}.default;
        # ...
    };
  };
}

Usage

To use dis πŸŽ₯, you need to provide an input video source using the -i (--input) option. The input source can be either a local file or an online URL (e.g., Discord Server, YouTube, Twitter, Reddit, etc...).

You can also specify various options to customize the output video, such as:

Option Description Default Value
-i, --input <input> Input video source None
-o, --output <output> Output directory for the compressed video Current Path
-c, --crf <crf> Constant Rate Factor (CRF) Higher values mean lower quality, Lower values mean higher quality 25
-r, --resolution <resolution> Output video resolution None
-t, --trim Enable video trimming false
--video-codec <video-codec> Output video codec None
--audio-bitrate <audio-bitrate> Output audio bitrate (in kbit/s) (only divisible by 2) 128k
--multi-thread Use all available threads (for faster compression) true
--random Randomize the output filename false
--sponsor Remove the sponsor segments from the output video using SponsorBlock API False

The CRF is a video compression method that grants users control over the output video quality, with higher values resulting in lower quality and vice versa. It is recommended to avoid values below 22 or above 38.

Here are some examples of how to use dis πŸŽ₯

Compressing a video from a website

1

Compressing a local file while adjusting its resolution to 480p and saving it to a designated directory

2

Compressing a video from YouTube and change the video codec to h265, resolution to 720p, and audio bitrate to 128, with a custom CRF value

3

Compressing a video from YouTube and trimming from 10 seconds to 20 seconds

4

Contributing

If you want to contribute to dis πŸŽ₯, you are welcome to do so. You can report issues, request features, or submit pull requests on GitHub.

License

dis is licensed under the AGPLv3.