Mp4 video with NO flash
Auteur : Billy Rippe
Visité 1269,
Followers 2,
Partagé 0
Hi Website X5 team, we are currently creating a website which is mainly video clips. My main concern is that our client uses ipad as well as most of the company staff. Here is what we nned, once a create a new page, i insert a Video and audio block, the thing is, if I try to choose a mp4 file, Website X5 automatically create a flash container. If I choose a .mov file, it doesn't. Can I tweak the settings to get a mp4 file with no falsh?
Posté le
Hello Billy,
WebSite X5 uses the flash player for some file formats and the for other formats it needs the windows medial palyer codec installed. You can also choose to use a custom player by adding the code in the HTML&Widget Object in Step 3 if you find a custom code that fits your needs.
If you require any further information, please feel free to write back.
Hello Billy,
You seem to have some knowledge in HTML so you could insert the HTML5 video tag :
For example :
One source only
<video width="400" height="222" controlssrc="/video/video.mp4">
Text or link that will be displayed when the player does not exist
</video>
More than one source
<videowidth="400"height="222"controls="controls">
<sourcesrc="/video/video.mp4"type="video/mp4" />
<sourcesrc="/video/video.ogv"type="video/ogg" />
Text or link that will be displayed when the player does not exist
</video>
Auteur
Thank you guys, that was very helpful, I'll try your suggestions and let you know how it goes...
cheers!