-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrigger.html
29 lines (23 loc) · 1.1 KB
/
trigger.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<title>Export asset</title>
</head>
<body>
<form id="requestForm" action="https://temporal-trigger.lan.bcc.media/trigger/ExportAssetVX" method="get">
<label for="vxID">vxID:</label>
<input type="text" id="vxID" name="vxID" required><br>
<label for="watermarkPath">watermarkPath:</label>
<input type="text" id="watermarkPath" name="watermarkPath" required value="/mnt/isilon/system/assets/BTV_LOGO_WATERMARK_BUG_GFX_1080.png"><br>
<label for="withChapters">withChapters (true/false):</label>
<input type="text" id="withChapters" name="withChapters" required value="true"><br>
<label for="destinations">destinations:</label>
<input type="text" id="destinations" name="destinations" required value="vod"><br>
<label for="languages">languages:</label>
<input type="text" id="languages" name="languages" value=""><br>
<label for="resolutions">resolutions (e.g: "1920x1080,1280x720"):</label>
<input type="text" id="resolutions" name="resolutions" value=""><br>
<input type="submit" value="Start export">
</form>
</body>
</html>