Hi,
Just installed video upload and am trying to get it working for use in course sites for my institution in the Spring. Videos can be uploaded fine, but aren't showing up when you go to a page with a video. The code appears to be there in View Source, but the video doesn't show:
<div class="field field-type-video-upload field-field-youtube">
<div class="field-label">Youtube Upload: </div>
<div class="field-items">
<div class="field-item odd">
<object type="application/x-shockwave-flash" height="295" width="480" data="http://www.youtube.com/v/&rel=0&fs=1" id="videoEmbed1" allowFullScreen="1">
<param name="movie" value="http://www.youtube.com/v/&rel=0" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="#FFFFFF" />
<param name="allowFullScreen" value="true" />
<embed src="http://www.youtube.com/v/&rel=0&fs=1" type="application/x-shockwave-flash" wmode="transparent" width="480" height="295" allowFullScreen="1"></embed></object> </div>
</div>
</div>
</div>
Additionally, even after videos are fully processed, we're getting a "Status: Video status is unknown. This most likely means it has not yet been processed" message.
Running latest drupal 6 install, and using a sub-theme of Fusion currently.
Apologies if this is a duplicate, did a search or two and couldn't find an obvious analog.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | video_upload_theme.inc-youtube-id.patch | 481 bytes | queenvictoria |
Comments
Comment #1
Vidus commentedBy way of an update, the status of the video is showing correctly now in the edit pane, but no matter what I change, I can't get the video to show in the post.
Comment #2
queenvictoria commentedIn the theme file there is a partial conversion to abstract out YouTube. But one variable remained unconverted. $yt_id should be $video_id. Patch attached.
Comment #3
Vidus commentedExcellent. Went into the file and made that change, and everything appears to be working perfectly now.
Comment #4
rethinkwebdesign commentedThanks for the patch, worked for me too.
Please add to dev.
Comment #5
bojanz commentedCommitted, thanks!