Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mmstick/tv-renamer
Mirror of https://gitlab.com/mmstick/tv-renamer
https://github.com/mmstick/tv-renamer
gtk linux rust tv-renamer tvdb
Last synced: 8 days ago
JSON representation
Mirror of https://gitlab.com/mmstick/tv-renamer
- Host: GitHub
- URL: https://github.com/mmstick/tv-renamer
- Owner: mmstick
- License: mit
- Created: 2016-05-07T20:29:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-28T07:48:23.000Z (about 6 years ago)
- Last Synced: 2024-10-12T22:49:52.893Z (22 days ago)
- Topics: gtk, linux, rust, tv-renamer, tvdb
- Language: Rust
- Homepage:
- Size: 876 KB
- Stars: 148
- Watchers: 13
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust-cn - mmstick/tv-renamer - ci.org/mmstick/tv-renamer.svg?branch=master">](https://travis-ci.org/mmstick/tv-renamer) (应用 / System tools)
- awesome-rust - mmstick/tv-renamer - ci.org/mmstick/tv-renamer.svg?branch=master">](https://travis-ci.org/mmstick/tv-renamer) (Applications / System tools)
- awesome-rust - mmstick/tv-renamer
- awesome-rust-cn - mmstick/tv-renamer
- awesome-rust-zh - mmstick/tv-renamer - 带有可选 GTK3 前端的,电视连续剧重命名应用程序。[<img src="https://api.travis-ci.org/mmstick/tv-renamer.svg?branch=master">](https://travis-ci.org/mmstick/tv-renamer) (应用 / 系统工具)
- awesome-rust - mmstick/tv-renamer - A tv series renaming application with an optional GTK3 frontend. (Applications / System tools)
- awesome-rust - mmstick/tv-renamer - ci.org/mmstick/tv-renamer.svg?branch=master">](https://travis-ci.org/mmstick/tv-renamer) (应用 Applications / 系统工具 System tools)
- fucking-awesome-rust - mmstick/tv-renamer - A tv series renaming application with an optional GTK3 frontend. (Applications / System tools)
- fucking-awesome-rust - mmstick/tv-renamer - A tv series renaming application with an optional GTK3 frontend. (Applications / System tools)
README
**Build Status:** [![Build Status](https://travis-ci.org/mmstick/tv-renamer.png?branch=master)](https://travis-ci.org/mmstick/tv-renamer)
# 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](https://www.rustup.rs/). If you are packaging for Debian, ensure that you have [cargo deb](https://github.com/mmstick/cargo-deb) installed.
```sh
make && sudo make install
```# GTK3 Manual
![GTK3 Screenshot](screenshot-gtk3.png)
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](screenshot-cli.png)
## 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.