TV Show, Release Date in Episode Title.
#1
I have a few shows where I would like to add the release date to the episode title. I tried the the following and nothing changed.

Code:
${showTitle} - S${seasonNr2}E${episodeNr2} - ${title} - ${date}

and 

Code:
${showTitle} - S${seasonNr2}E${episodeNr2} - ${title} - ${releasedate}

Is this possible? if it is possible, I am assuming that I'm not putting in the correct value. Could someone kindly clue me in?
#2
the token should be

Code:
${showTitle} - S${seasonNr2}E${episodeNr2} - ${title} - ${tvShow.firstAired}

see also all available tokens from the tv show itself: https://www.tinymediamanager.org/docs/ex...s#tv-shows
tinyMediaManager - THE media manager of your choice - available for Windows, macOS and Linux
Help us translate tinyMediaManager at Weblate | Translations at 66%
Found a bug or want to submit a feature request? Contact us at GitLab
#3
(2020-12-03, 09:18)mlaggner Wrote: the token should be

Code:
${showTitle} - S${seasonNr2}E${episodeNr2} - ${title} - ${tvShow.firstAired}

see also all available tokens from the tv show itself: https://www.tinymediamanager.org/docs/ex...s#tv-shows

Awesome, thank you very much for providing the documentation. I wasn't able to find it. 

I'll test it right away.
#4
I had to scrape the TV show again before it worked, which is fine. I was left with this result for the title;

Code:
AEW Dark - S01E01 - AEW Dark 01 - Tue Oct 08 00-00-00 CDT 2019

I was hoping to get month.day.year in numerical format. I'll look at the documentation and see if I can figure it out.
#5
I have seen that the JMTE renderer documentation is partly in the renamer docs (https://www.tinymediamanager.org/docs/tv...-options-4 scroll to the bottomm)
Quote:Date format renderer 
"date" - ${tvShow.firstAired;date(yyyy-MM-dd)} would cause the release date to be formatted with a renderer named “date”. This named renderer would then be passed the format “yyyy-MM-dd” along with the variable to be rendered.
so your pattern would probably be:
Code:
${tvShow.firstAired;date(MM.dd.yyyy)}
tinyMediaManager - THE media manager of your choice - available for Windows, macOS and Linux
Help us translate tinyMediaManager at Weblate | Translations at 66%
Found a bug or want to submit a feature request? Contact us at GitLab

Logout Mark Read Team Forum Stats Members Help
TV Show, Release Date in Episode Title.0