An open API service indexing awesome lists of open source software.

https://github.com/skyzyx/tv-show-renamer

Simple Bash scripts for cleaning up TV show titles and descriptions
https://github.com/skyzyx/tv-show-renamer

bash itunes mp4info mp4tags mp4v2 tv-shows

Last synced: about 2 months ago
JSON representation

Simple Bash scripts for cleaning up TV show titles and descriptions

Awesome Lists containing this project

README

          

# TV Show Renamer

Fixes a number of small annoyances when purchasing complete TV series’ from the iTunes Store.

1. In a title such as “Season 1, Episode 1: Pilot”, it will set Season to `1`, Episode to `1`, and Title to _Pilot_.

1. Will attempt some basic cleanup around apostrophes, quotes, etc.

## Usage

* Assumes GNU tools instead of BSD tools:
* `brew install mp4v2`

I tend to run it like this:

```bash
find /path/to/shows -type f -name "*.m4v" -print0 \
| xargs -0 --no-run-if-empty -I% ./itunes-store-complete-series-episode-fixer.sh "%"
```

## Support

None. If you have an issue, submit a PR with a fix.