How to print audio language to file name
Posted: 03 May 2020, 11:44
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
deu is a shortcut of deutsch=german
This displays the language only if its available
Kind regards to rednoah
A: I my case was german the certain audio language so rednoah came up with this
Code: Select all
{audioLanguages =~ /deu/ ? 'GERMAN' : null}
This displays the language only if its available
Kind regards to rednoah