|
RT,压制动画的文件名中包含很多视频信息,如 [Ma10p_1080p] 。由于这些信息导致了一些 PLEX 库管理上的问题,我做了一个重命名工具,专门用于批量简化动画文件名。
代码用 Python3 写的,理论上应该全平台通用,但目前为止我只在 Linux 下运行过这个工具。
重命名效果:
- # python3 rename.py "/files/[VCB-Studio] PERSONA5 the Animation [Ma10p_1080p]" --apply
- |[VCB-Studio] PERSONA5 the Animation [01][Ma10p_1080p][x265_flac_aac].mkv| --> |PERSONA5 the Animation 01.mkv|
- ...
- |[VCB-Studio] PERSONA5 the Animation [27(Dark Sun...)][Ma10p_1080p][x265_flac_aac].mkv| --> |PERSONA5 the Animation 27(Dark Sun...).mkv|
- |[VCB-Studio] PERSONA5 the Animation -THE DAY BREAKERS- [OVA][Ma10p_1080p][x265_flac_aac].mkv| --> |PERSONA5 the Animation -THE DAY BREAKERS- OVA.mkv|
复制代码
代码:
https://github.com/TheNetAdmin/VCB-Studio-Rename/
|
|