first of all, i don't see any fields in the video for everybody content type. i checked the permissions to see if they're hidden, but couldn't find any fields that might belong to video for everybody.

what i'm more interested in is whether it's possible to just paste your snippet of code into the body of a regular book page. so if i put this in there:

<video width="640" height="360" controls autoplay> 
	<!-- MP4 must be first for iPad! --> 
	<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"  type="video/mp4"  /><!-- WebKit video    --> 
	
	<!-- fallback to Flash: --> 
	<object width="640" height="360" type="application/x-shockwave-flash" data="video_for_everybody/assets/jw-player/4/player.swf"> 
		<!-- Firefox uses the `data` attribute above, IE/Safari uses the param below --> 
		<param name="movie" value="modules/video_for_everybody/assets/jw-player/4/player.swf" /> 
		<param name="flashvars" value="autostart=true&amp;controlbar=over&amp;image=poster.jpg&amp;file=http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" /> 
		<!-- fallback image --> 
		<img src="poster.jpg" width="640" height="360" alt="Big Buck Bunny"
		     title="No video playback capabilities, please download the video below" /> 
	</object> 
</video> 

i took out the webm and ogg parts because i only want to have to upload one version of the file (and if that doesn't work, it should fall back to flash). the flash part of this isn't working for me. any idea why?

thanks.