• Stars
    star
    147
  • Rank 251,347 (Top 5 %)
  • Language
    Rust
  • License
    MIT License
  • Created over 8 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Mirror of https://gitlab.com/mmstick/tv-renamer

Build Status: Build Status

Features

  • Written safely in the Rust programming language
  • Features both a command-line and GTK3 interface
  • Support for Templates to define custom naming schemes
  • TVDB Support for obtaining episode titles from TheTVDB
  • Automatically infers whether the input directory contains seasons or episodes
  • Only renames videos whose extensions can be found in /etc/mime.types

Installation Instructions

This project is using a Makefile for generating a busybox-style binary, named tv-renamer, which provides two options: cli and gtk. Ensure that you have a modern stable version of Rust installed via rustup. If you are packaging for Debian, ensure that you have cargo deb installed.

make && sudo make install

GTK3 Manual

GTK3 Screenshot

The use of this application should be fairly straightforward. The program uses the /etc/mime.types file to only detect videos in a given directory, and does not make a distinction between what is or is not part of the series, so ensure that the only video files in the directory that you are renaming contains the episodes that you are wanting to rename, and ensure that the episodes are in alphabetical order. The application does not derive the episode number from the episode name, but by their alphabetical order in the directory.

  • Season Name: The name of the TV series to be renamed.

    • This will be automatically inferred from the directory path if no name is set.
  • Season Directory: The location of the base directory where the season folders or episodes are stored.

  • Template: Defines the naming scheme to use when renaming episodes.

  • Season Number and Episode Number: Defines what index to start counting from.

The directory structure for base directories with season folders should be as follows:

Series Title/Specials/{Episodes...}

Series Title/Season 1/{Episodes...}

Series Title/Season 2/{Episodes...}

CLI Manual

If you need help with the usage of the CLI application, this manual page is also included in the program and is invokable with the -h and --help flags. The CLI interface is invoked by executing tv-renamer cli or tv-renamer, followed by your arguments of choice.

CLI Screenshot

NAME:

tv-renamer - rename TV series and movies

DESCRIPTION:

Renames all videos in a directory according to their season and episode. If the given DIRECTORY contains season directories, it will automatically rename episodes in each season. If no DIRECTORY is given, the default path will be the current working directory. It is recommended to use the dry-run option first before committing any changes. If a target file already exists, the command will ask if it is okay to overwrite the file. Please ensure that all of the files in the directory are video files that you want renamed.

OPTIONS:

-d, --dry-run: Runs through all of the files and prints what would happen without doing anything.

-n, --series-name: Sets the name of the series to be renamed. [not optional]

-s, --season-number: Sets the season number to use when renaming a file. [default: 1]

-t, --template: Sets the template that will define the naming scheme. [default: "${Series} ${Season}x${Episode} ${TVDB_Title}"]

-e, --episode-start: Sets the episode number to start counting from. [default: 1]

-p, --pad-length: Sets the number of digits to pad the episode count for. [default: 2]

-v, --verbose: Print the changes that are occurring.

Template Tokens:

  • ${Series}: Name of the TV Series
  • ${Season}: Season of the TV Series
  • ${Episode}: Current Episode Number
  • ${TVDB_Title}: Title of the current episode from TVDB
  • ${TVDB_First_Aired}: The first airing date of the episode from TVDB

EXAMPLE:

When executed inside of a directory with the name of the TV Series

one.mkv two.mkv three.mkv
> tv-renamer -n "series name"
"TV Series 1x01 Episode Title.mkv"
"TV Series 1x02 Episode Title.mkv"
"TV Series 1x03 Episode Title.mkv"

You can define your own naming scheme with --template:

> one.mkv two.mkv three.mkv
> tv-renamer -t "${Series} S${Season}E${Episode} - ${TVDB_Title}"
> "TV Series S1E01 - Episode Title.mkv" "TV Series S1E02 - Episode Title.mkv" "TV Series S1E03 - Episode Title.mkv"

The season name can also be automatically inferred:

"$series/Season1" "$series/Season2"
> tv-renamer "$series" OR cd $series && tv-renamer
"TV Series/Season1/TV Series 1x01.mkv"
"TV Series/Season1/TV Series 1x02.mkv"
...
"TV Series/Season2/TV Series 2x01.mkv"
"TV Series/Season2/TV Series 2x02.mkv"
...

Episode titles can also be pulled from the TVDB and added to the filenames.

> tv-renamer -t "${Series} ${Season}x${Episode} ${TVDB_Title}"
"TV Series/Season1/TV Series 1x01 Episode Title.mkv"

AUTHOR:

Written by Michael Aaron Murphy.

More Repositories

1

parallel

This project now lives on in a rewrite at https://gitlab.redox-os.org/redox-os/parallel
Rust
1,200
star
2

cargo-deb

A cargo subcommand that generates Debian packages from information in Cargo.toml
622
star
3

fontfinder

GTK application for browsing and installing fonts from Google's font archive
Rust
258
star
4

concurr

Performs distributed command execution, written in Rust w/ Tokio
Rust
94
star
5

numtoa

An efficient method of heaplessly converting numbers into their string representations, storing the representation within a reusable byte array.
Rust
42
star
6

gtkrs-tutorials

2021 Tutorial for GTK-rs
40
star
7

phoronix-reader

CLI application written in Rust that parses and prints information from the front page of Phoronix.
HTML
31
star
8

rust-google-translate

A simple GTK application written in Rust that uses Google Translate
Rust
27
star
9

permutate

Generic permutator written in Rust that permutates both lists of lists and singular lists using references.
Rust
15
star
10

advent_of_code_2016

Rust Solutions for Advent of Code 2016
Rust
3
star
11

ion-plugins

Official plugins for Ion
Rust
3
star
12

coingecko-rs

Rust crate for interacting with the CoinGecko API
Rust
3
star
13

nostd_echo

An implementation of echo in Rust using only libcore (#![no_std])
Rust
3
star
14

debrepbuild

A project for automatically generating and maintaining Debian repositories from a TOML spec.
Rust
2
star
15

zbus

Temporary fork of zbus for Rust 1.51.0 support
Rust
2
star
16

advent-of-code-solutions

This is a list of my solutions for Advent of Code (2015 Dec) written in Rust.
Rust
2
star
17

zig-slotmap

Arena allocator with generational indices and a secondary map for secondary associations, for Zig Lang
Zig
2
star
18

upower-dbus

UPower info via Dbus, for Rust
Rust
2
star
19

portix

Portage GUI Manager in Rust
Rust
2
star
20

appinst

Hobby project to create a software center for Linux written in Rust
Rust
2
star
21

packaging-deno

Debian packaging of https://github.com/denoland/deno
Rust
1
star
22

rustcyp

A utility that checks email or user accounts pwned status against the haveibeenpwned.com API
Rust
1
star