-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcommon.js
530 lines (448 loc) · 18.6 KB
/
common.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
var token = '';
$.get("/backend/get_access_token.php", function(data, status) {
token = data;
});
$.file = undefined;
$("input[type=file]").on("change", function() {
$.file = this.files[0];
});
//updates progress bar displaying upload progress
function update_upload_progress(upload_progress) {
var percentage = upload_progress.percentage;
if (percentage <= 0) {
$('.progress-bar').css("width", percentage + "%").text("Starting");
} else {
$('.progress-bar').css("width", percentage + "%").text("Uploading: " + percentage + " %");
}
}
function update_multiple_upload_progress(upload_progress) {
var percentage = upload_progress.percentage;
var task_id = upload_progress.task_token;
var file_name = upload_progress.filename;
var name = '#progress-bar_' + task_id
if (percentage <= 0) {
$(name).css("width", percentage + "%").text("Starting uploading" + file_name);
} else {
$(name).css("width", percentage + "%").text("Uploading file " + file_name + ": " + percentage + " %");
}
}
function poll_job_status_multiple_uploads_metadata(task_token, response, filename) {
var id_progress_bar = '#progress-bar_' + task_token;
var id_progress_bar_0 = '#progress-bar-0_' + task_token;
var id_a = '#link_' + task_token;
var status_or = response.statuses[task_token].status;
var status = status_or.charAt(0).toUpperCase() + status_or.slice(1);
var percent = response.statuses[task_token].percent;
if (percent == 0) {
$(id_progress_bar).hide();
$(id_progress_bar_0).show();
$(id_progress_bar_0).css("width", "100%").text(status + ": 0%");
} else {
$(id_progress_bar_0).hide();
$(id_progress_bar).show();
$(id_progress_bar).css("width", percent + "%").text('Status ' + filename + ' - ' + status + ": " + percent.toFixed(2) + " %");
if (status_or == "completed" && response.statuses[task_token].videos.length > 0) {
var manifestUri = '';
var jsonUrl = '';
response.statuses[task_token].videos.forEach(item => {
if (item.tag.indexOf("metadata") === 0) {
jsonUrl = item.url;
const response2 = fetch(jsonUrl).then((response) => {
if (response.ok) {
console.log("OK")
return response.json();
} else {
console.log("Error")
console.log(response.json())
return {};
}
})
.then((data) => {
var str = JSON.stringify(data, undefined, 4);
var inhtml = document.getElementById('myTextArea').innerHTML;
// display pretty printed object in text area:
document.getElementById('myTextArea').innerHTML = inhtml + str;
document.getElementById('myTextArea').style.display = "block";
});
} else {
manifestUri = item.url;
}
});
$(id_a).text('Download ' + filename).attr("href", manifestUri);
$(id_a).show();
console.log('Output video url: ' + manifestUri);
if (qencode_arr.length == 1) {
$('#video').css("display", "block");
if (manifestUri.endsWith('.mpd') || manifestUri.endsWith('.m3u8')) {
initApp();
} else {
var video = $('#video')[0];
video.src = manifestUri;
video.load();
video.play();
}
}
}
}
}
function poll_job_status_multiple_uploads(task_token, response, filename) {
var id_progress_bar = '#progress-bar_' + task_token;
var id_progress_bar_0 = '#progress-bar-0_' + task_token;
var id_a = '#link_' + task_token;
var status_or = response.statuses[task_token].status;
var status = status_or.charAt(0).toUpperCase() + status_or.slice(1);
var percent = response.statuses[task_token].percent;
if (percent == 0) {
$(id_progress_bar).hide();
$(id_progress_bar_0).show();
$(id_progress_bar_0).css("width", "100%").text(status + ": 0%");
} else {
$(id_progress_bar_0).hide();
$(id_progress_bar).show();
$(id_progress_bar).css("width", percent + "%").text('Status ' + filename + ' - ' + status + ": " + percent.toFixed(2) + " %");
if (status_or == "completed" && response.statuses[task_token].videos.length > 0) {
var manifestUri = response.statuses[task_token].videos[0].url;
$(id_a).text('Download ' + filename).attr("href", manifestUri);
$(id_a).show();
console.log('Output video url: ' + manifestUri);
if (qencode_arr.length == 1) {
$('#video').css("display", "block");
if (manifestUri.endsWith('.mpd') || manifestUri.endsWith('.m3u8')) {
initApp();
} else {
var video = $('#video')[0];
video.src = manifestUri;
video.load();
video.play();
}
}
}
}
}
function add_progress_bar(task_token) {
var id_progress_bar = 'progress-bar_' + task_token;
var id_progress_bar_0 = 'progress-bar-0_' + task_token;
var id_a = 'link_' + task_token;
var iDiv = document.createElement("div");
iDiv.className = 'progress-striped active';
iDiv.style.width = '100%';
var iDiv_progress_bar = document.createElement("div");
var iDiv_progress_bar_0 = document.createElement("div");
var ia_progress_bar = document.createElement("a");
ia_progress_bar.id = id_a;
iDiv_progress_bar.id = id_progress_bar;
iDiv_progress_bar_0.id = id_progress_bar_0;
iDiv_progress_bar.className = 'progress-bar';
iDiv_progress_bar_0.className = 'progress-bar-0';
iDiv_progress_bar.style.height = '20px';
iDiv_progress_bar_0.style.height = '20px';
iDiv.appendChild(iDiv_progress_bar);
iDiv.appendChild(iDiv_progress_bar_0);
iDiv.appendChild(ia_progress_bar);
document.getElementById('file_list').appendChild(iDiv);
var id_bar = '#' + id_progress_bar;
var id_bar_0 = '#' + id_progress_bar_0;
var id_aa = '#' + id_a;
$(id_bar).show();
$(id_bar_0).hide();
$(id_aa).hide();
}
//this method will be called each 15 seconds to get job status, display progress and play video on completion
function poll_job_status(task_token, response) {
var status_or = response.statuses[task_token].status;
var status = status_or.charAt(0).toUpperCase() + status_or.slice(1);
var percent = response.statuses[task_token].percent;
if (percent == 0) {
$('.progress-bar').hide();
$('.progress-bar-0').show();
$('.progress-bar-0').css("width", "100%").text(status + ": 0%");
} else {
$('.progress-bar-0').hide();
$('.progress-bar').show();
$('.progress-bar').css("width", percent + "%").text(status + ": " + percent.toFixed(2) + " %");
if (status_or == "completed" && response.statuses[task_token].videos.length > 0) {
var manifestUri = response.statuses[task_token].videos[0].url;
console.log('Output video url: ' + manifestUri);
$('#video').css("display", "block");
if (manifestUri.endsWith('.mpd') || manifestUri.endsWith('.m3u8')) {
initApp();
} else {
var video = $('#video')[0];
video.src = manifestUri;
video.load();
video.play();
}
}
}
}
//clears previous job data from the page
function clear_previous_job(qencode) {
$('.progress-bar').hide();
$('.progress-bar-0').show();
qencode.clear();
$('#video').css("display", "none");
}
function clear_previous_job_miltiple_uploads(qencode_arr) {
const myNode = document.getElementById("file_list");
myNode.textContent = '';
for (var i = 0; i < qencode_arr.length; i++) {
qencode_arr[i].clear();
}
qencode_arr = [];
$('#video').css("display", "none");
document.getElementById('myTextArea').innerHTML = "";
document.getElementById('myTextArea').style.display = "none";
}
/**** Shaka Player initialization - used to play adaptive streaming media (HLS or MPEG-DASH)****/
function initApp(url) {
shaka.polyfill.installAll();
if (shaka.Player.isBrowserSupported()) {
initPlayer(url);
} else {
console.error('Browser not supported!');
}
}
function initPlayer(url) {
var video = document.getElementById('video');
var player = new shaka.Player(video);
window.player = player;
player.addEventListener('error', onErrorEvent);
player.load(url).then(function() {
console.log('The video has now been loaded!');
}).catch(onError);
}
function onErrorEvent(event) {
onError(event.detail);
}
function onError(error) {
console.error('Error code', error.code, 'object', error);
}
function get_name_id_element(value1 = '', value2 = '', value3 = '') {
return value1 + value2 + value3;
}
function new_form(num_form) {
var array_output_format = [{ value: 'mp4', name: "MP4" }, { value: 'advanced_hls', name: "HLS" },
{ value: 'advanced_dash', name: "MPEG - DASH" }, { value: 'webm', name: "MPWEBM" }
]
var input_file_id = get_name_id_element('file', num_form);
var output_format_id = get_name_id_element('output_format', num_form);
var video_codec_id = get_name_id_element('video_codec', num_form);
var destination_id = get_name_id_element('destination', num_form);
var size_w_id = get_name_id_element('size_w', num_form);
var size_h_id = get_name_id_element('size_h', num_form);
var parent_div = document.createElement("div");
var choos_file_text_div = document.createElement("div");
choos_file_text_div.innerText = 'Choose file';
var input_file_text_div = document.createElement("div");
var input_file_text = document.createElement("input");
input_file_text.type = 'file';
input_file_text.id = input_file_id;
input_file_text.setAttribute("multiple", "");
input_file_text.className = 'form-element';
input_file_text_div.appendChild(input_file_text);
var inserct_url_div = document.createElement("div");
inserct_url_div.innerText = 'Or insert URL';
var inserct_url_input_div = document.createElement("div");
var inserct_url_imput = document.createElement("input");
var inserct_url_imput_id = get_name_id_element('video_url', num_form);
inserct_url_imput.type = 'text';
inserct_url_imput.value = 'https://qa.qencode.com/static/1.mp4';
inserct_url_imput.id = inserct_url_imput_id;
inserct_url_imput.className = 'form-element';
inserct_url_input_div.appendChild(inserct_url_imput);
var output_format_div = document.createElement("div");
output_format_div.innerText = 'Output Format';
var input_output_format_div = document.createElement("div");
var select_output = document.createElement("select");
select_output.className = 'form-element';
select_output.id = output_format_id;
input_output_format_div.appendChild(select_output);
for (var i = 0; i < array_output_format.length; i++) {
var option = document.createElement("option");
option.value = array_output_format[i].value;
option.text = array_output_format[i].name;
select_output.appendChild(option);
}
var video_codec_div = document.createElement("div");
video_codec_div.innerText = 'Video Codec';
var input_video_codec_div = document.createElement("div");
var select_video_codec = document.createElement("select");
select_video_codec.className = 'form-element';
select_video_codec.id = video_codec_id;
input_video_codec_div.appendChild(select_video_codec);
var Destination_div = document.createElement("div");
Destination_div.innerText = 'Destination';
var input_Destination_div = document.createElement("div");
var input_file_text = document.createElement("input");
input_file_text.type = 'text';
input_file_text.id = destination_id;
input_file_text.className = 'form-element';
input_Destination_div.appendChild(input_file_text);
var size_div = document.createElement("div");
size_div.innerText = 'Size, px';
var input_size_div = document.createElement("div");
var input_size_w = document.createElement("input");
input_size_w.type = 'text';
input_size_w.id = size_w_id;
input_size_w.className = 'form-element-2';
input_size_w.value = "320"
input_size_div.appendChild(input_size_w);
input_size_div.append(" x ");
var input_size_h = document.createElement("input");
input_size_h.type = 'text';
input_size_h.id = size_h_id;
input_size_h.value = "240"
input_size_h.className = 'form-element-2';
input_size_div.appendChild(input_size_h);
var btn_ok_div = document.createElement("div");
var btn_ok = document.createElement("button");
btn_ok.className = 'form-element';
btn_ok.innerText = "Ok";
btn_ok.onclick = function() { click_ok_btn_multiple(num_form); };
btn_ok_div.appendChild(btn_ok);
var btn_add_div = document.createElement("div");
var btn_add = document.createElement("button");
btn_add.className = 'form-element';
btn_add.innerText = "Add Form " + (num_form + 1);
btn_add.onclick = function() { Creae_form(); };
btn_add_div.appendChild(btn_add);
parent_div.appendChild(choos_file_text_div);
parent_div.appendChild(input_file_text_div);
parent_div.appendChild(inserct_url_div);
parent_div.appendChild(inserct_url_input_div);
parent_div.appendChild(output_format_div);
parent_div.appendChild(input_output_format_div);
parent_div.appendChild(video_codec_div);
parent_div.appendChild(input_video_codec_div);
parent_div.appendChild(Destination_div);
parent_div.appendChild(input_Destination_div);
parent_div.appendChild(size_div);
parent_div.appendChild(input_size_div);
parent_div.appendChild(btn_ok_div);
parent_div.appendChild(btn_add_div);
document.getElementById('list_forms').appendChild(parent_div);
select_output.onchange = function() { load_codecs_multiple(num_form); };
load_codecs_multiple(num_form);
}
var webm_codecs_multiple = {
"VP8": "libvpx",
"VP9": "libvpx-vp9"
};
var codecs_multiple = {
"H.264 (MPEG-4 Part 10)": "libx264",
"H.265 (MPEG-H PART2/HEVC)": "libx265"
};
function load_codecs_multiple(num_id = '') {
var id_video_codec = "#video_codec" + num_id;
var id_output_format = "#output_format" + num_id + " option:selected";
var $el = $(id_video_codec);
$el.empty();
var output_format = $(id_output_format).val();
if (output_format == 'webm') {
$.each(webm_codecs_multiple, function(key, value) {
$el.append($("<option></option>")
.attr("value", value).text(key));
});
} else {
$.each(codecs_multiple, function(key, value) {
$el.append($("<option></option>")
.attr("value", value).text(key));
});
}
};
function click_ok_btn_multiple(num_form = '') {
var input_file_id = "input[id=file]".replace("file", "file" + num_form);
var id_video_url = "#video_url" + num_form;
var id_output_format = "#output_format" + num_form + " option:selected";
var video_codec_id = "#video_codec" + num_form + " option:selected";
var destination_id = "#" + get_name_id_element('destination', num_form);
var size_w_id = "#" + get_name_id_element('size_w', num_form);
var size_h_id = "#" + get_name_id_element('size_h', num_form);
if (token != '') {
var output_format = $(id_output_format).val();
var format = {
"output": $(id_output_format).val(),
"destination": $(destination_id).val()
};
if (output_format == "advanced_hls" || output_format == "advanced_dash") {
var stream = {
"size": $(size_w_id).val() + "x" + $(size_h_id).val(),
"video_codec": $(video_codec_id).val(),
};
format["stream"] = [stream];
} else {
format["size"] = $(size_w_id).val() + "x" + $(size_h_id).val();
format["video_codec"] = $(video_codec_id).val();
}
var data = [];
var file_input = $(input_file_id).get(0);
if (file_input.files.length == 0) {
data.push({
"source": $(id_video_url).val(),
"format": [format]
});
} else {
for (var i = 0; i < file_input.files.length; ++i) {
data.push({
"file": file_input.files[i],
"format": [format]
});
}
}
var options = {
interval: 15, //status polling interval
endpoint: 'https://api.qencode.com' //api endpoint
};
for (var i = 0; i < data.length; i++) {
// var nn = 'Name'+i;
// var oo = new TestObject(nn);
// oo.start_custom();
run_qencode(data[i], options)
}
}
}
async function run_qencode_multiple(data, options) {
var name = '';
if (data.file) {
name = data.file.name;
} else {
var url = data.source.split("/");
var file_uuid = url[url.length - 1];
name = file_uuid;
}
var ss = new Qencode(token, {
"query": data
}, options);
qencode_arr.push(ss);
var is_good = ss.create_task(function(start_response) {
if (!start_response.error) {
ss.status({
token: start_response.task_token,
url: start_response.status_url,
filename: name
},
poll_job_status_multiple_uploads
);
} else {
console.log("Error!!!")
console.log(start_response)
}
});
if (is_good) {
add_progress_bar(ss.task_token);
ss.start_custom(function(start_response) {
if (!start_response.error) {
ss.status({
token: start_response.task_token,
url: start_response.status_url,
filename: name
},
poll_job_status_multiple_uploads
);
} else {
console.log("Error!!!")
console.log(start_response)
}
}, update_multiple_upload_progress);
}
}