Skip to content

Japanese Media Manager

ZeroQI edited this page Dec 24, 2016 · 5 revisions

It uses anidb as source and uses hash info from file to determine what the show is (release included) and where it goes. So this means that shows like SOA/Fate stay night..etc are all in there own folder for each part of the series. Movies are also in there own folder since anidb treats every movie as its own show.

Renaming Script:


IF I(eng) DO ADD '%eng'
IF I(ann);I(!eng) DO ADD '%ann'
DO REPLACE '[' ''
DO REPLACE ']' ''
IF T(!Movie);H(!S);T(!OVA) DO ADD ' - %enr - '
IF H(S),T(OVA),T(Movie) DO ADD ' - %enr - '
DO ADD '%epr '
DO ADD '[%grp]'


// Replace all illegal file name characters
DO REPLACE '<' '('
DO REPLACE '>' ')'
DO REPLACE ':' ' -'
DO REPLACE '"' '`'
DO REPLACE '/' '-'
DO REPLACE '\' ''
DO REPLACE '|' ''
DO REPLACE '?' ''
DO REPLACE '*' '+'
//DO REPLACE 'S0' '0'
DO REPLACE '[%grp]' ''

DeusXanime's version of similar script:


// Anime Name, use english name if it exists, otherwise use the Romaji name
IF I(eng) DO ADD '%eng '
IF I(ann);I(!eng) DO ADD '%ann '
// Episode Number (movies add # to assist with Plex/ASS identification)
IF T(!Movie) DO ADD '- Ep %enr '
IF T(Movie) DO ADD '%enr '
// If the file version is v2 or higher add it here
IF F(!1) DO ADD 'v%ver '
// If special, add the episode name
IF H(S) DO ADD '- %epr '
DO ADD '('
// If DVD or Blu-ray, add identifier
IF R(DVD) DO ADD 'DVD '
IF R(Blu-ray) DO ADD 'BD '
IF R(LD) DO ADD 'LD '
// Add resolution
DO ADD '%res'
// IF 10bit, add identifier (skip if also HEVC)
IF Z(10);C(!HEVC) DO ADD ' Hi10P'
// If HEVC, add identifier
IF C(HEVC) DO ADD ' HEVC'
// If dual language, add identifier
IF D(japanese);D(english) DO ADD ', JPN+ENG'
DO ADD ') '
// Before adding fansub group and CRC, clean up brackets
DO REPLACE '[' '- '
DO REPLACE ']' ''
// Add fansub group name - %grp is short name, %grl is long name
DO ADD '[%grl] '
// Add CRC
DO ADD '[%CRC]'

// Replacement rules (cleanup)
DO REPLACE '__' '_'
DO REPLACE '  ' ' '
// Fix special naming & numbering
DO REPLACE 'Ep S' 'Special '

// Generic cleanup of redundant labels in fansub group names
DO REPLACE ' Fansub]' ']'
DO REPLACE '-Fansub]' ']'
DO REPLACE ' Fansubs]' ']'
DO REPLACE '-Fansubs]' ']'
DO REPLACE ' fansub]' ']'
DO REPLACE '-fansub]' ']'
DO REPLACE ' fansubs]' ']'
DO REPLACE '-fansubs]' ']'
DO REPLACE ' Subs]' ']'
DO REPLACE '-Subs]' ']'
DO REPLACE ' subs]' ']'
DO REPLACE '-subs]' ']'
DO REPLACE ' Rips]' ']'
DO REPLACE '-Rips]' ']'
DO REPLACE ' Scans]' ']'
DO REPLACE '-Scans]' ']'

// Replace all illegal file name characters leftover
DO REPLACE '<' '('
DO REPLACE '>' ')'
DO REPLACE ':' ' -'
DO REPLACE '"' ''
DO REPLACE '/' '-'
DO REPLACE '\' ''
DO REPLACE '|' ''
DO REPLACE '?' '!'
// DO REPLACE '`' 'FIXME'
DO REPLACE '*' 'Bleep'

// Per fansub group special fixes
DO REPLACE '[Unlimited Translation Works]' '[UTW]'
DO REPLACE '[Cthuko-caffeine]' '[Cthune]'
DO REPLACE '[THORAnime]' '[THORA]'
DO REPLACE '[ShitimeSubs]' '[Shitime]'
DO REPLACE '[Irregular Hunter Productions]' '[IHP]'
DO REPLACE '[FFFpeeps]' '[FFF]'
DO REPLACE '[Chihiro-Senketsu]' '[Chihiro & Senketsu]'
DO REPLACE '[cornbreadman]' '[CBM]'
DO REPLACE '[GJM-FFF]' '[GJM & FFF]'
DO REPLACE '[μtw-scribbles]' '[mutw & scribbles]'
DO REPLACE '[Sailor Moon Center]' '[SMC]'
DO REPLACE '[Good Job! Media]' '[GJM]'
DO REPLACE '[Good Job! Media-Vivid]' '[Vivid & GJM]'
DO REPLACE '[naishosubs]' '[naisho]'
DO REPLACE '[OZC Anime]' '[OZC]'
DO REPLACE '[Sage]' '[sage]'
DO REPLACE '[Late Night Snack]' '[LNS]'
DO REPLACE '[DATS.US]' '[DATS]'
DO REPLACE '[AnimeSenshi]' '[Asenshi]'
DO REPLACE '[Asenshi-GJM]' '[Asenshi & GJM]'
DO REPLACE '[Gray-Phantom]' '[G_P]'
DO REPLACE '[Pikanet128]' '[Pn8]'
DO REPLACE '[Utsukushii Shujin Shujinowski]' '[USS]'
DO REPLACE '[WhyNot!]' '[WhyNot]'
DO REPLACE '[Good Job! Media-DameDesuYo]' '[GJM & DameDesuYo]'
DO REPLACE '[Hi10 Anime]' '[Hi10]'

// Per anime special fixes
DO REPLACE 'Bishoujo Senshi Sailor Moon Crystal Season III' 'Sailor Moon Crystal Season 3'
DO REPLACE 'Working!!!' 'Working!! 3'
DO REPLACE 'Mobile Suit Gundam Unicorn Re -0096' 'Mobile Suit Gundam Unicorn RE 0096'
DO REPLACE 'Idolmaster - Cinderella Girls (2015)' 'Idolmaster - Cinderella Girls Second Series'
DO REPLACE 'Glitter Force' 'Smile Precure!'
DO REPLACE 'Mahou Shoujo Nante Mouiidesukara' 'Mahou Shoujo Nante Mou Ii Desukara'
DO REPLACE 'Assassination Classroom - Second Season' 'Assassination Classroom (2016)'
DO REPLACE 'Re -Zero - Starting' 'Re-Zero - Starting'
// DO REPLACE 'High School Fleet' 'Haifuri'
DO REPLACE 'Big Order' 'Big Order (2016)'
DO REPLACE 'Kuromukuro' 'Black Relic'