Video Showcase is a plugin that uses video links from Youtube and Vimeo to generate thumbnail images for the videos and display those images as video embed links on the front end of your site. When a visitor clicks one of the thumbnail image links the video for that link is displayed in a styled thickbox. The different video links are stored in groups so that the different groups can be displayed through out your website by placing them in widget areas or using shortcodes.
Content
- VideoShowcase Basics
- Creating a Group
- Adding a Video to the Group
- Add a YouTube or Vimeo Video
- Adding a Stand Alone Video
- Adding Thumbnails to Videos
- Displaying VideoShowcas on Your Site
- Widget
- Shortcode
- Customize VideoShowcase
- Force VideoShowcase to Appear OVER/ON-TOP of Flash
- Change Default Video Size
- Hide Video Thumbnails
VideoShowcase Basics
Creating a Group
The first step in adding VideoShowcase to your site is to create a group to store the video entries in. The link to VideoShowcase in the WordPress admin area is in the DisplayBuddy section of the menu. When you click the VideoShowcase link it will direct you to the area where you can create a group. The only information requested to create a group is a name for that group, group image width, and group image height.
After you have created a group it will be added to a table that lists all of the existing groups and lists information about them.
Adding Videos to the Group
Once you have created a group then you will be able to add videos to that group. To add videos to a group you can click the "Add Videos" link that is next to the name of the group. There are two different forms for adding videos. The first form can be used for adding a YouTube or Vimeo video, and the second form can be used to add a stand alone video (ex: mp4, flv, and mov).
Adding a YouTube or Vimeo video
This form only requires a title and a video page URL.
Example of what to put in the "video URL" are outlined in red in the images below (be sure to use the long URL in the browser's address bar, not the shortened URL below the video in YouTube):
Since the videos are stored on YouTube and Vimeo those sites already have images for those videos that VideoShowcase retrieves from those sites and uploads them to your WordPress media library. If you decide that you don't like the image that is retrieved from YouTube or Vimeo then you can edit the video entry and upload or select an image from your media library.
Adding a Stand Alone video
This form is used for adding videos that stored in stand alone locations (ex: Amazon S3, Rackspace). Here is a list of the required information for adding a stand alone video:
- Video Title
- Video File URL - VideoShowcase can only play mp4, flv, and mov files so it is important to make sure that the video files are in the correct format (ex: http://mysite..com/videos/anyvideo.mp4 ).
- Select or upload an image - Upload an image or select an image from your media library.
Adding Thumbnails to Videos
You can add thumbnails to both Stand Alone videos and externally hosted videos.
- For Stand Alone videos:
- Select and upload an image when you're adding your video under the "Add Stand Alone Video" option
- For YouTube and Vimeo videos:
- Add the video
- Edit the video by clicking "Edit Video" link in front of the video
- Click the "Custom Image" button.
Displaying VideoShowcase on Your Site
VideoShowcase can be added to your site using two different methods, widgets or shortcode.
Widget
Navigate to the Widgets area under Appearance in the WordPress Admin area. Drag the VideoShowcase widget into the widget area that you would like for it to display in and fill out the widget form with the information for the group you would like to show.
Shortcode
The groups table in VideoShowcase will display a list of information for each different group that you have created. In the row of the group that you would like to display there is a "Create Shortcode" link that will bring up a popup form to help create a customized shortcode for that group and settings you would like. If you would like to add a VideoShowcase group to a post or page all you have to do is copy that shortcode and paste it the content of a page or post.
Customize VideoShowcase
Force VideoShowcase to Appear OVER/ON-TOP of Flash
Many times, flash and other external elements can start appearing on top of VideoShowcase videos, whether or not VideoShowcase video is loaded above or before such elements.
One solution for this is to change the wmode key for your flash.
Related links:
Change Default Video Size
Currently, the default pop-up videos play at 500px width and 344px height.
You can change this to any other dimension you wish by changing the numeric values on lines 20 and 21 in the wp-content/plugins/videoshowcase/js/jquery.pbvideosc.js file.
Following are lines 20 and 21:
default_width: 500,
default_height: 344,
Only change the numeric value in the above 2 lines. Leave everything else as is.
Hide Video Thumbnails
You can hide the video thumbnails completely to show only the associated Titles, if they are defined. Put the following code in your theme's css file:
#videoshowcaseid-1 img { display: none; }
Change the " 1 " in the videoshowcaseid-1
to the number corresponding to your videoshowcase group number. That will hide the thumbnails completely.