Page 1 of 1

How to print audio language to file name

Posted: 03 May 2020, 11:44
by Hamm3rhart
Q: I want to print the a certain audio language to the file name but only if the file contains it. If not the step should be skiped.

A: I my case was german the certain audio language so rednoah came up with this

Code: Select all

{audioLanguages =~ /deu/ ? 'GERMAN' : null}
deu is a shortcut of deutsch=german

This displays the language only if its available
Kind regards to rednoah