Changes

Jump to navigation Jump to search
m
no edit summary
Line 1: Line 1:  
=Overview of HTML5 media libraries and feedbacks=
 
=Overview of HTML5 media libraries and feedbacks=
    +
<span style="color:#FF0000">This page is under construction</span>
 +
 +
=Video=
 
== Display a Video ? ==
 
== Display a Video ? ==
   Line 9: Line 12:  
Even if ogv is free, it’s not supported on all majors platforms.
 
Even if ogv is free, it’s not supported on all majors platforms.
   −
   * http://caniuse.com/#feat=mpeg4
+
   http://caniuse.com/#feat=mpeg4
   * http://caniuse.com/#feat=ogv
+
   http://caniuse.com/#feat=ogv
    
=== Usage ===
 
=== Usage ===
Line 16: Line 19:  
You can simply use a video tag
 
You can simply use a video tag
   −
   * http://www.w3schools.com/html/html5_video.asp
+
   http://www.w3schools.com/html/html5_video.asp
 +
   
 +
  <video width="400" controls>
 +
    <source src="mov_bbb.mp4" type="video/mp4">
 +
    <source src="mov_bbb.ogg" type="video/ogg">
 +
    Your browser does not support HTML5 video.
 +
  </video>
    
=== Warning ===
 
=== Warning ===
Line 22: Line 31:  
On Android, >=2.3 is strongly recommended
 
On Android, >=2.3 is strongly recommended
   −
   * http://www.broken-links.com/2010/07/08/making-html5-video-work-on-android-phones/
+
   http://www.broken-links.com/2010/07/08/making-html5-video-work-on-android-phones/
    
{| class="wikitable"
 
{| class="wikitable"
Line 41: Line 50:  
|
 
|
 
|}
 
|}
 +
==Record a video using the Webcam==
 +
==Take a picture using the Webcam==
    +
=Audio=
 
== Play sound ? ==
 
== Play sound ? ==
   Line 52: Line 64:  
=== Usage ===
 
=== Usage ===
   −
You can use the audio tag - https://www.w3.org/wiki/HTML/Elements/audio
+
You can use the audio tag
   −
=== Warning ===
+
  https://www.w3.org/wiki/HTML/Elements/audio
 +
 
 +
  <audio controls
 +
    src="http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.oga">
 +
    Your user agent does not support the HTML5 Audio element.
 +
  </audio>
   −
   * Volume is read-only on iOS.
+
   See http://createjs.com/SoundJS
  * Chrome on Android does not support autoplay as advised by the specification.
  −
 
  −
=== Sound Manager ===
  −
 
  −
  * http://createjs.com/SoundJS
      +
=== Warning ===
   −
== Interact with Canvas ? ==
+
  Volume is read-only on iOS.
 +
  Chrome on Android does not support autoplay as advised by the specification.
   −
=== Scene Manager ===
+
== Record sound using the microphone ==
   −
  * http://createjs.com
+
=Input/Touch=
30

edits

Navigation menu