Outils pour utilisateurs

Outils du site


informatique:video

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
informatique:video [28/09/2016 13:00] – [Conversion de format] cyrilleinformatique:video [28/09/2016 13:19] (Version actuelle) – [Video.js] cyrille
Ligne 18: Ligne 18:
 ===== Web player ===== ===== Web player =====
  
-==== Video.js ====+====Pour le web==== 
 + 
 +We need to encode our video with several different codecs so **that every browser can play** the one it likes. Codecs are a way to compress digital media. There are dozens of video codecs, but the ones you should know about for web videos are **H.264, vp8, and theora**. Each type of encoded videos is housed in a different type of container. Again, there are dozens of video containers, but for web videos you only need to know about **mp4, webm, and ogg**. 
 + 
 +<code html> 
 + <video width="400" height="225" poster="img/quickfox.jpg" controls> 
 +    <source src="video/quickfox.mp4" type="video/mp4" /> 
 +    <source src="video/quickfox.ogg" type="video/ogg" /> 
 +    <source src="video/quickfox.webm" type="video/webm" /> 
 + </video> 
 +</code> 
 + 
 +===== Video.js =====
  
 http://videojs.com/getting-started/ http://videojs.com/getting-started/
  
informatique/video.1475060403.txt.gz · Dernière modification : 28/09/2016 13:00 de cyrille

Sauf mention contraire, le contenu de ce wiki est placé sous les termes de la licence suivante : CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki