Better Embedder
Can someone please give me a quick line of html that will embed a cute little quicktime player in each of my blog entries? Thanks, Richard
Can someone please give me a quick line of html that will embed a cute little quicktime player in each of my blog entries? Thanks, Richard
This entry was posted on Tuesday, March 15th, 2005 at 7:57 am by Administrator and is filed under Crap. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.
Sorry, the comment form is closed at this time.
Insane Films is proudly powered by
WordPress. A Kubrick Mod by MX4.
Entries (RSS)
and Comments (RSS).
Yeah, if you still need HTML code so you can embedd video contact me….I think I may be able to help
I think you could use http://www.qtbridge.com/pageot/pageot.html … it works for HTML files you have full control over, at any rate.
for the mac view, all you need is:
<embed src=’path_to_your_movie.mov’ width=’666′ height=’*’ loop=’BOOL’ align=’CENTER’ autoplay=’BOOL’ controller=’BOOL’></embed>
where BOOL is true/false and height is 16 for just audio and for vids is 16+height of your movies (the control bar is 16px high). You can screw around with the dimensions but you’ll crash it if you go below 2×2.
On PCs running crappy XP w/service pack 2, their fucked-up ActiveX crap requires you wrap the embed in an object. You have to have the ‘classid’, ‘codebase’ and ‘pluginspage’ params set the vars listed or the shit won’t work. It’s crap. So now you need:
<object classid=”clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B” width=”666″
height=”*” codebase=”http://www.apple.com/qtactivex/qtplugin.cab”>
<param name=”src” value=”path_to_movie.mov”>
<param name=”autoplay” value=”true”>
<param name=”controller” value=”false”>
<embed src=’path_to_your_movie.mov’ width=’666′ height=’*’ loop=’BOOL’ align=’CENTER’ autoplay=’BOOL’ controller=’BOOL’
pluginspage=”http://www.apple.com/quicktime/download/”>
</embed>
</object>
You might have to tweak the dimensions on the <object> tag — I’ve had problems with alternative realities resulting between IE and Firefox on PCs. Stick it in a table– that always helps.
Love your show. It makes my crotch itch. More Puccini, please.
p.s. the upload problem you’re having sounds like a server-side ‘max-file-size’ value is set too low. maybe they had bandwidth problems and changed it as a quick fix?