Skip to content

Commit 1f3b4fe

Browse files
save file
1 parent 86fb09b commit 1f3b4fe

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

blog/25-11-15/ffmpeg-in-the-browser/ffmpeg-in-the-browser.html

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11

22

3+
<!-- headers
4+
cross-origin-isolate
5+
-->
6+
7+
38
<!DOCTYPE html>
49

510
<html>
@@ -63,6 +68,7 @@
6368
var vctldr;
6469
var fwdemo;
6570
var fwtldr;
71+
var ffprobe;
6672
var m4demo;
6773

6874

@@ -81,6 +87,7 @@
8187
vctldr = mod['videoconverter-tldr'];
8288
fwdemo = mod['ffmpeg-wasm-demo'];
8389
fwtldr = mod['ffmpeg-wasm-tldr'];
90+
ffprobe = mod.ffprobe;
8491
m4demo = mod['mp4box-demo'];
8592

8693
hdr.initmod({ext,$});
@@ -89,6 +96,7 @@
8996
vctldr.initmod({ext,$,menu,ace});
9097
fwdemo.initmod({ext,$,menu,ace});
9198
fwtldr.initmod({ext,$,menu,ace});
99+
ffprobe.initmod({ext,$,menu,ace});
92100
m4demo.initmod({ext,$,menu,ace});
93101

94102

@@ -99,6 +107,7 @@
99107
vctldr.init(),
100108
fwdemo.init(),
101109
fwtldr.init(),
110+
ffprobe.init(),
102111
m4demo.init(),
103112
]);
104113

@@ -365,6 +374,19 @@ <h3>
365374

366375
<hr>
367376

377+
<section>
378+
<h3>
379+
ffprobe in the browser
380+
</h3>
381+
<p>
382+
i came across this to day, so thought i would include it also
383+
</p>
384+
385+
<snippet-html-console id=ffprobe src='ex/ffprobe/ffrobe.html' component></snippet-html-console>
386+
387+
</section>
388+
389+
<hr>
368390

369391
<section>
370392
<h3>
@@ -389,7 +411,6 @@ <h3>
389411

390412

391413

392-
393414

394415

395416
<log-mod component></log-mod>
@@ -413,6 +434,8 @@ <h3>
413434
fwdemo.initdom();
414435
fwtldr.initdom();
415436

437+
ffprobe.initdom();
438+
416439
m4demo.initdom();
417440

418441

0 commit comments

Comments
 (0)