video-indexer

Blocked: In Azure Logic app, how can you add group of checkboxes for each of the languages for a user to choose for caption translation option?

妖精的绣舞 提交于 2021-01-28 12:46:29
问题 I have created a logic app, to pull the Video Transcript(VTT) caption file, once the videos have been indexed. I want the user to have the ability to choose which language they would like the captions to be translated in ( For e.g English, Spanish, French, Portuguese etc). Is there a way to add group of check boxes for each of the languages for the user to choose? I was looking at this :https://api-portal.videoindexer.ai/docs/services/Operations/operations/Get-Video-Index but it looks like

Blocked: In Azure Logic app, how can you add group of checkboxes for each of the languages for a user to choose for caption translation option?

一个人想着一个人 提交于 2021-01-28 12:43:19
问题 I have created a logic app, to pull the Video Transcript(VTT) caption file, once the videos have been indexed. I want the user to have the ability to choose which language they would like the captions to be translated in ( For e.g English, Spanish, French, Portuguese etc). Is there a way to add group of check boxes for each of the languages for the user to choose? I was looking at this :https://api-portal.videoindexer.ai/docs/services/Operations/operations/Get-Video-Index but it looks like

How to save binary video data to azure blob?

谁说胖子不能爱 提交于 2020-03-05 03:49:09
问题 I am currently using this code to select a file from local disk to my api: <script language="javascript" type="text/javascript"> $(document).ready(function(){ $(':file').on('change', function () { var file = this.files[0]; if (file.type !== "video/mp4" && file.type!== "video/quicktime") { alert("Content must be video .mp4 or .mov") } $(':button').on('click', function () { if (file.type == "video/mp4" || file.type == "video/quicktime"){ $.ajax({ // Your server script to process the upload url: