How to print audio language to file name

Any questions? Need some help?
Post Reply
Hamm3rhart
Posts: 8
Joined: 16 Mar 2020, 10:43

How to print audio language to file name

Post 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
Post Reply