Media
Organize music libraries and video episode filenames
Media files often arrive with noisy release names. Rename.Tools can turn them into predictable names for players, media servers, and shared folders.
Music library naming
For albums, filenames should preserve track order and remain readable outside the music player. If tags are available, load metadata and use artist, title, album, or track variables.
A practical music pattern is track number first, then artist, then title. It sorts correctly in folders and still makes sense when files are copied to a USB drive, phone, DJ library, or media server.
If your files do not have reliable tags, start with the existing filename and use Sequence for track order. You can still clean separators and casing without depending on metadata.
- 1Import one album at a time when track order matters.
- 2Load metadata if the files have reliable audio tags.
- 3Use a template such as {media.track}. {media.artist} - {media.title}.
- 4Keep Scope set to Name so audio extensions remain unchanged.
- 5Preview missing artist or title values before executing.
love story.mp301. Taylor Swift - Love Story.mp3track_07.flac07. Artist - Song Title.flacVideo and episode cleanup
Video files often include dots, quality tags, release group names, and inconsistent episode casing. Use regex to extract the show and episode code, then clean separators with find and replace.
When you have a TMDb API key, use the media scraper to match episodes and bring in better titles before generating final names. If you do not want to use TMDb, you can still standardize S01E03-style filenames with regex alone.
For media servers, consistency matters more than clever wording. Choose one pattern for a library and reuse it across seasons.

- 1Normalize separators by replacing dots or underscores with spaces.
- 2Use regex to preserve S01E03 style episode numbers.
- 3Remove quality tags like 720p, 1080p, WEB-DL, or BluRay when they are not needed.
- 4Use Title Case only after regex extraction, so show names become readable.
- 5Preview the full season before executing.
show.name.s01e03.1080p.web-dl.mkvShow Name S01E03.mkvKeep media server compatibility
Use consistent separators and avoid changing extensions unless you are intentionally converting files elsewhere. Rename.Tools changes names, not media formats.
For shared libraries, prefer predictable patterns over clever names. A boring format that sorts correctly is easier to maintain and easier for other tools to parse.
Before renaming a large library, test one album or one season. Media libraries often contain edge cases: bonus tracks, specials, trailers, commentary files, subtitles, and multi-part episodes.
Handle subtitles and extras separately
Subtitle files need to keep the same base name as the video file so players can auto-detect them. Do not run a video-only cleanup on .srt or .ass files unless the resulting base names still match.
Extras such as trailers, interviews, samples, and behind-the-scenes clips should usually be filtered into a separate batch. They often do not follow the same S01E03 pattern as episodes.
- 1Filter video files and subtitle files separately when their naming rules differ.
- 2After renaming episodes, compare subtitle base names with matching video names.
- 3Keep extras in a separate folder or add a clear suffix such as extras or trailer.
- 4Export a plan before renaming a mixed media folder.
show.name.s01e03.1080p.en.srtShow Name S01E03.en.srtThe subtitle base name still matches the cleaned episode name.
Ready to try the workflow?
Open Rename.Tools, add a few sample files, and preview every rule before touching the real filenames.