Skip to main content

Vid Cleaner

Changelog PyPI version PyPI - Python Version Tests codecov

Tools to transcode, inspect and convert videos. This package provides convenience wrappers around ffmpeg and ffprobe to make it easier to work with video files. The functionality is highly customized to my personal workflows and needs. I am sharing it in case it is useful to others.

Features

  • Remove commentary tracks and subtitles
  • Remove unwanted audio and subtitle tracks
  • Determine a video's original language from its filename, its container metadata, or the TMDb, Radarr, and Sonarr APIs
  • Convert to H.265 or VP9
  • Convert 4k to 1080p
  • Downmix any surround layout (5.1, 7.1, and Atmos above 7.1) into a stereo track when one is missing, or recreate an existing stereo track with --force, using a dialogue-forward filter that keeps speech clear
  • Remove unwanted audio and subtitle tracks, optionally keeping the original language audio track
  • Create clips from a video file
  • Search for video files under a directory that match specific criteria

Install

Before installing vid-cleaner, the following dependencies must be installed:

To install vid-cleaner, run:

# With uv
uv tool install vid-cleaner

# With pip
python -m pip install --user vid-cleaner

Usage

Run vidcleaner --help to see the available commands and options.

Searching for video files

vidcleaner search DIRECTORY finds video files under a directory and prints a table of matches. Narrow the search with --filters, control how deep it recurses with --depth, and change the order with --sort and --reverse. Use --limit to keep only the top results on the active sort key:

# The five largest 4k files, two directories deep
vidcleaner search /media --filters=4k --sort=size --depth=2 --limit=5

Listing several filters narrows the search rather than widening it: a file must have every trait you name to be returned.

# Only 4k files that also have a 5.1 track and no stereo track to go with it
vidcleaner search /media --filters=4k,surround5,needs_stereo

Cleaning what you searched for

clean accepts the same query flags as search, so a search command is a preview of the clean command that acts on it. Swap the positional directory for --from:

# Preview
vidcleaner search /media --filters=4k --sort=size --limit=5

# Act on exactly that selection
vidcleaner clean --from /media --filters=4k --sort=size --limit=5 --h265

clean renders the same table search does, then asks for confirmation before transcoding anything. The prompt states whether each original will be backed up or overwritten in place. Pass --yes to skip the prompt in scripts and cron jobs, or --dryrun to preview without being asked. Running without a terminal and without --yes is an error rather than a hang.

--from cannot be combined with explicit file paths or with --out, and must name an existing directory. --yes and the query flags (--filters, --sort, --reverse, --depth, --limit) are only meaningful with --from and are refused without it. --limit must be 1 or greater.

Where the output goes

clean and clip replace the file they were given. The original is not deleted: it is renamed alongside the result as a timestamped .bak copy. Pass --overwrite to skip the backup and rewrite the file in place with no way back, or --out PATH (single input file only) to write somewhere else and leave the input untouched.

--vp9 is the exception, because VP9 has to go in a WebM container. vidcleaner clean --vp9 movie.mkv writes movie.webm next to the input. Without --overwrite the original movie.mkv is left where it is; with --overwrite it is removed, so the container change does not leave two copies of the same film on disk.

When cleaning several files, a failure on one file does not stop the run. Every remaining file is still processed, failures are listed at the end, and the command exits with a non-zero status.

Configuration

Defaults for vid-cleaner are set in the configuration file located at ~/.config/vid-cleaner/config.toml. When vid-cleaner is run, it will create this file if it does not exist. All options can be overridden on the command line.

If you've updated your user config file, the flags for the cli will work in reverse order. For example, if you've set downmix_stereo = true in your user config file, the flag --downmix will actually disable downmixing.

Important: Vid-cleaner makes decisions about which audio and subtitle tracks to keep based on the original language of the video. To find that language, it looks for an IMDb or TMDB id in three places, stopping at the first one that resolves:

  1. The filename, matching either a bare tt0245712 or the {tmdb-55} naming convention.
  2. The container's own IMDB and TMDB metadata tags, as written by tools like mkvmerge.
  3. A Radarr or Sonarr title search.

The first two need only tmdb_api_key in the configuration file. Set the radarr_ and sonarr_ keys if you want the title search as a fallback.

# Languages to keep (list of ISO 639-1 codes)
langs_to_keep = ["en"]

# Keep subtitles matching the local language(s) even when the audio is not in the local language(s)
keep_local_subtitles = false

# Keep commentary audio
keep_commentary = false

# Force dropping local subtitles even if audio is not default language
drop_local_subs = false

# Keep all subtitles
keep_all_subtitles = false

# Drop original language audio if not specified in langs_to_keep
drop_original_audio = false

# Always create a stereo track
downmix_stereo = false

# External services used to determine the original language of a movie or TV show
radarr_api_key = ""
radarr_url     = ""
sonarr_api_key = ""
sonarr_url     = ""
tmdb_api_key   = ""

File Locations

Vid-cleaner uses the XDG specification for determining the locations of configuration files, logs, and caches.

  • Configuration file: ~/.config/vid-cleaner/config.toml
  • Cache: ~/.cache/vid-cleaner

Contributing

See CONTRIBUTING.md for more information.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vid_cleaner-0.12.0.tar.gz (197.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vid_cleaner-0.12.0-py3-none-any.whl (80.8 kB view details)

Uploaded Python 3

File details

Details for the file vid_cleaner-0.12.0.tar.gz.

File metadata

  • Download URL: vid_cleaner-0.12.0.tar.gz
  • Upload date:
  • Size: 197.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vid_cleaner-0.12.0.tar.gz
Algorithm Hash digest
SHA256 993f250e18810c9b08c96367be192ff1c57c20f6e8aa1cb9dae324c94fb4177f
MD5 02c536e36aed2beb09763704f862b654
BLAKE2b-256 3f043ac78f51a1dc9690e62af38eebe32801d35dd69032c5e4c93c051cfe9437

See more details on using hashes here.

File details

Details for the file vid_cleaner-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: vid_cleaner-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vid_cleaner-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fea662190e29dcf494dbed578b6d92102fe1ef32c8c735be80491669182ec19f
MD5 c6e9a19754cde5d38324a476211a8c41
BLAKE2b-256 c030ab4278a83daa7cc1885851f66188693cef83e0e152e006c885738f79adf1

See more details on using hashes here.

Release history Release notifications | RSS feed

0.13.0

2 files

This release

0.12.0 This release

2 files

0.11.0

2 files

0.10.2

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.5

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.6

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page