Importing video
SwishMax 2 now allows import videos (as Flash did before it).
Watch how to in images
With html5, all previous is needless because you can integrate video straightly in page
Example coding video html5 :
<figure id="video_guitar">
<video width="427" height="260" controls="controls">
<source src="guitare.mp4" type="video/mp4" />
<source src="guitare.webm" type="video/webm" />
<source src="guitare.ogv" type="video/ogg" />
Votre navigateur ne supporte pas le format video.
</video></figure>
Example coding audio html5 :
<audio autoplay loop>
<source src="my-song.ogg" type="audio/ogg" />
<source src="my-song.mp3" type="audio/mpeg" />
<object type="application/x-shockwave-flash" data="dewplayer.swf" width="300" height="60" id="dewplayer" name="dewplayer">
<param name="movie" value="dewplayer-bubble-vol.swf" />
<param name="flashvars" value="mp3=my-song.mp3" />
<param name="wmode" value="transparent" />
</object>Your browser does not support the audio element.</audio>

