I want to rename my TV shows as per the episode and the series they are from. My TV shows are generally in the format '[Show name].SabEyz.blabla.mp4', e.g, Futurama.S07E01.HDTVx264.mp4' I want to rename them in this format 'Episode xy - [Show name] - Series ab.mp4'
I tried using the following:
for %%a in (*S07E??*.mp4) do ren '%%a' 'Episode ?? - Futurama - Series 7.mp4'
But it gave me an error that the specified file was not found
As you can see the above script cannot be used generally for all the series of the same show. I would like to do something about that too. Thank you!