On Mar 15, 2011, at 3:31 PM, Henry Baragar wrote:
Hello,
I am using paperclip to upload mp4 videos. How do I create a tag for
playing a video on a show page?
You'll need to add an object/embed tag, or a video tag if you're using
HTML5 (and your visitors have sufficiently studly browsers). You'll
need to use mediainfo or ffmpeg to extract the geometry from the movie
file, as you have to put it in the HTML for either of these tags.
Here's what it looks like for object/embed (happen to be working on a
similar project right now):
@movie = <<END
<object class="mov"
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="#{width}" height="#{height}"
id="video_#{id}" type="video/quicktime">
<param name="src" value="#{path}">
<param name="controller" value="true">
<param name="postdomevents" value="true">
<param name="width" value="#{width}">
<param name="height" value="#{height}">
<param name="autostart" value="false">
<param name="enablejavascript" value="true">
<param name="cache" value="true">
<param name="bgcolor" value="#535353">
<embed class="mov" width="#{width}" height="#{height}"
id="videoembed_#{id}" src="#{path}"
name="video_#{id}"
type="video/quicktime"
pluginspage="www.apple.com/quicktime/download"
enablejavascript="true" postdomevents="true"
controller="true" autostart="false"
cache="true" bgcolor="#535353" />
</object>
END
Walter
TIA,
Henry
--
Henry Baragar
Instantiated Software
--
You received this message because you are subscribed to the Google
Groups "Hobo Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected]
.
For more options, visit this group at http://groups.google.com/group/hobousers?hl=en
.
--
You received this message because you are subscribed to the Google Groups "Hobo
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/hobousers?hl=en.