You can use SWF objects to embed your chronicle. You should add this js library to your html:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
then in the main js file you call the embedSWF method:
var params = { allowScriptAccess: "always" }; var atts = { id: "myytplayer" }; swfobject.embedSWF("http://www.youtube.com/v/FeJkDewhTEw?enablejsapi=1&playerapiid=ytplayer&version=3&controls=0&showinfo=0", "ytapiplayer", "425", "356", "8", null, null, params, atts);
If you don't want any controls or information, just set the controls = 0 and showinfo = 0 in the URL
See: https://developers.google.com/youtube/js_api_reference#GettingStarted
Adrien
source share