How to "title" metadata into filename

Hi gbadesha,

You can do this now with the Dynamic Renamer:


The idea is simple, and the transformation is:

-$/___{title}/ -/^(.*)___(\d+).*$/BYL $1 - $2/

This is a two stage transformation, which:

  1. adds the title string to the end of the filename, after some unique marker symbols (I chose three underscores).
-$/___{title}/
  1. uses a regular expression to grab the pieces you want, and rearranges the output as per your requirements.
-/^(.*)___(\d+).*$/BYL $1 - $2/

Give it a shot!