January 31, 2009
In tutorial How to add a video in Blogger we've talked about the options of placing a video in our Blog...Them in Part 1 and Part 2, we've learned something about video customization, slideshows...
This time, I'll show you how to make a Video Gallery and set the video to Autoplay.
MAKING A VIDEO GALLERY
Video Gallery or Video Wall is a group of your favorite videos (personal or public ones) displayed in a gallery box with video thumbnails.
◄ DailyMotion Video Wall ►
Dailymotion is a video hosting service website with great interface and features. You can share videos, create your channels...
Here's the example of the video wall created in Dailymotion:
...stylish. Anyway, the steps are:
► create an account with Dailymotion.com
► go to My Channel
► under Video Tools (left menu), select Create a Videowall
Options:
► choose a channel you'd like to display (public, or your personal..)
► you can adjust the size (rows, columns)
► autoplay. zooming, video titles, spacing...
Copy the provided code, and paste it into your Blog Post, or Sidebar/Footer using a HTML/JavaScript gadget from Add a Gadget (LAYOUT ► PAGE ELEMENTS)
....as simple as it gets...
◄ BLINKX Video wall ►
Blinx is the world’s largest and most advanced video search engine. It's very intuitive. You'll figure it out in a second...Here's the example of the Video wall created in Blinkx:
..Steps:
► go to blinkx.com
► search for the videos of your interest
► drag the videos into your playlist box (bottom left)
► when you're done (you can place 1 or 101 video - it doesn't matter), click on Wall it on the bottom of the box..
► copy the provided code, and paste it into your Blog Post (rather in HTML MODE, than COMPOSE)
Video wall will have a certain width and height....Just change it to fit your Blog post (refer to resizing videos in Part 1)
That's it...
◄ Videos in HTML tables ►
Here is another way of organizing videos in your Blog. It's quite old fashioned, but still works. In this example, I've made a video gallery from Youtube videos (you can use videos from anywhere, of course):
| Video 1 | Video 2 | Video 3 | Video 4 |
|---|---|---|---|
| Video 5 | Video 6 | Video 7 | Video 8 |
| Video 9 | Video 10 | Video 11 | Video 12 |
..if you like it,click here to grab the code:
<style type="text/css">.nobrtable br { display: none }</style>
<div class="nobrtable"><table>
<tr>
<th align="center">Video 1</th>
<th align="center">Video 2</th>
<th align="center">Video 3</th>
<th align="center">Video 4</th>
</tr>
<tr>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
</tr>
<tr>
<th align="center">Video 5</th>
<th align="center">Video 6</th>
<th align="center">Video 7</th>
<th align="center">Video 8</th>
</tr>
<tr>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
</tr>
<tr>
<th align="center">Video 9</th>
<th align="center">Video 10</th>
<th align="center">Video 11</th>
<th align="center">Video 12</th>
</tr>
<tr>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
</tr>
</table></div>
...replace the lines in green with your own titles, and lines in orange with the video code provided from a site (Youtube, Metacafe....)<div class="nobrtable"><table>
<tr>
<th align="center">Video 1</th>
<th align="center">Video 2</th>
<th align="center">Video 3</th>
<th align="center">Video 4</th>
</tr>
<tr>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
</tr>
<tr>
<th align="center">Video 5</th>
<th align="center">Video 6</th>
<th align="center">Video 7</th>
<th align="center">Video 8</th>
</tr>
<tr>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
</tr>
<tr>
<th align="center">Video 9</th>
<th align="center">Video 10</th>
<th align="center">Video 11</th>
<th align="center">Video 12</th>
</tr>
<tr>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
<td>Video code goes here...</td>
</tr>
</table></div>
SET A VIDEO TO AUTOPLAY IN BLOGGER
Here's the example how to set a Youtube videos to autoplay when your Blog post is opened:
The original video code:
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/8VWcqILJam4&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8VWcqILJam4&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
And after tweaking:<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/8VWcqILJam4&hl=en&fs=1&autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8VWcqILJam4&hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
..you have to add &autoplay=1 (in orange) just like in the code above...in both places.That's it...if you have any questions, scream!
Smile!
















22 comments:
maybe your name is "pocket", whoever you are, i'm so thank you about your very cool template that i use, to have a look www.albestna.com, regard from us "ennie & Bahar"
Ennie&Bahar...
I'm glad you like the template...if you'll need any help with it, scream...
Smile!
I like the way u explain the things to organize the videos
Thanks coder...
:]
Thanks for all your tips! It helped a lot with my blog.
Is it possible to make a post on how you can put a picture behind a youtube video? Making it like a frame around the video?
Tried googling for the answer but couldn't find any :(
Hew Wusama....
It's possible. Just wrap your video code in div element:
<div style="position:center; width:400px; height:400px; background:url(URL OF THE PIC GOES HERE);">
VIDEO CODE GOES HERE
</div>
...change the width and height to suit your needs...
...width and height define the div container size, not the video size...
Smile!
Great! I managed to do it :) Thanks a lot pocket! You are the best!
i saw a lots of photomagazine templates,and none of videomagazine so i was wondering is it possible to make for example your post and put videos in it that is shows like thumnails and then when you click it it opens that video.
example of it on wordpress temple just to let you know what is my idea
http://tmwwtw-videophotogame.blogspot.com/
on this blog someone converted from wordpres
please answer me..thanks
How can I make my video play that I Uploaded from my computer within my posting Autoplay? Thank you:)
by any chance is it possible to loop a video that was uploaded using blogger.
THANKS!!
Kenya & Marcus Ng,
...I really don't know. Never tried it with Blogger video. When I found out, I'll scream...
Smile!
so what would we do if we wanted a video that was autoplaying to not autoplay? We've tried changing autoplay from true to false, but is there some other code that must be added?
Michelle,
...if it's a youtube video, it should be the same as the explanation above, only opposite (remove autoplay)...
For other videos, you'll have to find the "autoplasy" string, and chop it!
Smile!
Thanks!
Is there any way I can left align two you tube vids directly under one another?
hey, this is great ... need a little help though, if possible. trying to do similar to wusama (above) ... but basically want to re create example on link. i can create the background with text but not sure how to position the youtube vid on top.
http://i660.photobucket.com/albums/uu324/redoctober911/Screenshot2011-01-25at125159.png
sorry ... one more thing. found this amazing 'slider' that would be even better. but adding it to a blogger blog is way beyond my skills. could you take a look and maybe do a basic tutorial?
http://www.hugoandcat.com/DualSlider/index.html
Hey pocket, thanks for the tips, really appreciate. Now I can listen to my beloved song as I enter my blog. Thanks~!!!!
Is there a way to add more videos to this table?
Sorry i am meaning the youtube table. I know there's a way i think i am just in need of some sleep.
Hi Thanks for the great tips!
I was wondering if maybe you have a code that enables to use the video clip as a thumbnail when posting in Blogger. When someone for example tries to like a post they should have the ability to choose the video as thumbnail.
Thanks
Rocky
thanks for nice articles
Say it...