Web media technologies
這些年來,網頁來表達,創作及運用視訊及音訊以至其他媒介的能力不斷上升。今時今日存在了 大量可供運用的 API 及 HTML 元件,DOM 介面,及其他不止於 發揮傳統效果,還能與其他網頁層面的技術產生協同效應和真實地令人深刻銘記 的特效。本文列出不同的 APIs 和連結其詳細資料的超連結,希望你能認為這些資訊能幫你盡快純熟這些技術。
References
HTML
這些文章包括 HTML 特效,供HTML媒體開發者參考。
APIs
- Media Capture and Streams API
-
這是一個參考資料,關於串流,記錄,管控媒體資料,無論是本地的,透過網路的。這些包括本地的攝錄機及來捕流視訊,音效或圖像的麥克風。
- Web Audio API
-
你可以藉由此 API 產出、篩選及操作即時的聲音或是預先錄製好的材料,然後將音效送至
<audio>
元件、影音串流或是儲存起來。 - WebRTC
-
WebRTC (網頁即時通訊)能夠即時地串流影音,也能夠透過網際網路將兩個人的訊息資料互相傳遞,而不需要任何媒介。
指南
- 網頁傳播媒體的概述
-
支援影音撥放,操作與紀錄的網頁科技與 API 的概論。如果你不知道該使用哪一個 API,請從這裡開始。
Other topics
Related topics which may be of interest, since they can be used in tandem with media APIs in interesting ways.
- The Canvas API
-
The Canvas API lets you draw into an
<canvas>
, manipulating and changing the contents of an image. This can be used with media in many ways, including by setting a<canvas>
element as the destination for video playback or camera capture so that you can capture and manipulate video frames. - WebGL
-
WebGL provides an OpenGL ES compatible API on top of the existing Canvas API, making it possible to do powerful 3D graphics on the Web. Through a canvas, this can be used to add 3D imagery to media content.