Skip to content

Commit 43a0986

Browse files
save file
1 parent d4e6992 commit 43a0986

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,13 @@ <h3>
429429
media mimetypes
430430
</h3>
431431
<p>
432+
<a href='https://developer.mozilla.org/en-US/docs/Web/Media/Formats/codecs_parameter#sect3'>
433+
Codecs in Common Media Types
434+
<span class=link-domain>
435+
developer.mozilla.org
436+
</span>
437+
</a>
438+
<div class=br></div>
432439
when working with audio / video its often helpful to determine the mime types of the codecs in use,
433440
actually this only works for mp4
434441
</p>
@@ -478,11 +485,11 @@ <h4>
478485
</h4>
479486
<ul>
480487
<li>
481-
WebCodecs (recommended): Native browser API. Minimal code, no external library downloads, good performance.
488+
<b>WebCodecs (recommended):</b> Native browser API. Minimal code, no external library downloads, good performance.
482489
Requires you to parse or otherwise obtain SPS/PPS for the decoder config.
483490
</li>
484491
<li>
485-
Broadway (JS/asm.js/WASM): A historical JavaScript H.264 decoder compiled from Android’s C decoder via Emscripten.
492+
<b>Broadway (JS/asm.js/WASM):</b> A historical JavaScript H.264 decoder compiled from Android’s C decoder via Emscripten.
486493
Runs fully in JS without browser codecs, but is heavier and slower compared to hardware/native paths.
487494
Useful if WebCodecs isn’t available or you need a pure-JS path.
488495
</li>

0 commit comments

Comments
 (0)