How can you add more than one captions language?

244 views Asked by At

I have created a logic app, to pull the Video Transcript(VTT) files, once the videos have been indexed. I wanted the user to have the ability to choose which language caption they want from a list of options(E.g English, Spanish, French etc). Is there a way to add group of checkboxes for each of the languages for the user to choose?

1

There are 1 answers

14
George Chen On BEST ANSWER

You could pass the language as the http request query parameter the set it in the code view mode.

Set the language value with @triggerOutputs()['queries']['language'].

enter image description here

enter image description here

enter image description here