Video Thumbnails 2.0 Beta
-
Version 2.0 of Video Thumbnails is in the works, and it includes some major reworking under the hood. The release will focus on reorganizing and optimizing the current code to handle more sources and more plugins. If you’re interested in helping test the new version, you can sign up here.
-
Are you going to fix the thumbnails with twitch/justin embeds? I can’t seem to get them to work.
Good work!
This plugin does not work for http://www.youku.com. Can you support http://www.youku.com?
Thanks!This is a very old thread, is 2.0beta still alive?
Yes, but but because there are few end user changes and because I have limited time to dedicate to non-paying projects I can’t give a timeline of when the next beta release or public release will be. If you’re signed up here you’ll receive updates when they’re available.
Hi, i want to use thumbnails, instead of big videos.
I’ve installed the plugin. But i do not understand how it works.
It suppose to do it automatic, when you paste the code of youtube in your post?
Is there an “how to use”?
B.t.w. I am building my first WP site.Thnx, Andrew
please insert this service:
http://www.putlocker.com/file/4B53573B8BA3479A
http://www.sockshare.com/file/E84D0A4430992C66and if possible:
http://www.veoh.com/
http://www.novamov.com/video/gv3rpwcdjlw5n
http://180upload.com/2xl0lsqujua8http://www.uploadc.com/embed-kvmtb626klcr.html#
http://uploadhero.co/v/C9gtORnCif you need, I can doing traslation for Italian.
thankkkkksssss
I have multi video service in “custom field”. Then i need post more custonm fild name; but When I save the page return white , can fix :/?
Hey I sent an email and would love to use this for my site immediately but still haven’t heard back. Dying to have the HD thumbnail!
Would be also awesome to be able to pick the part from the video you want to show as thumbnail!
Have you signed up for the beta mailing list here? I can’t seem to find your email. When an update is available I send out an email, which means you might not get it right away but lately I’ve been sending out updates every other day or so.
As for picking your own thumbnails, that’s unlikely to ever be fully supported by this plugin. Currently the plugin gets the thumbnail by requesting one from the video’s source (YouTube, Vimeo, etc.). I believe a few sources may offer a few different thumbnails (beginning, middle, end) in their API, so it may be possible that these options are eventually offered but I don’t see it happening soon.
I got the email thanks brotha π Oh i have two wordpress accounts, lost one then registered the other and between browsers logged in with both lol.. my bad… π
the option page of plugin retur with white page!
π dont’ know what happened.The problem start when i put on the custom field textarea more of 1 name.
Hi, I may be able 2 help with…..
Scan on Demand and Automatically
There are also reports that in certain situations the plugin doesnβt scan on publish, so thumbnails have to be manually scanned. Iβd like to fix this, but need some help discovering what circumstances lead up to this.
I faced this problem with gravity forms, it allows user submitted content on the front end and you have options to create a draft, pending review or publish. When using the publish option, video thumbnails doesn’t grab the thumbnail.
I’d like to reiterate, I don’t code, what I’ve done is probably harmful so I’d love some advice. I solved this by removing function video_thumbnails_past_callback() from the plugin and adding to my themes function.php I then changed it to
function video_thumbnails_past_callback() { global $wpdb; // this is how you get access to the database $post_id = $_POST['post_id']; echo get_the_title( $post_id ) . ' - '; $video_thumbnail = get_video_thumbnail( $post_id ); if ( is_wp_error( $video_thumbnail ) ) { echo $video_thumbnail->get_error_message(); } else if ( $video_thumbnail != null ) { echo '<span style="color:green">✔</span> Success!'; } else { echo '<span style="color:red">✖</span> Couldn\'t find a video thumbnail for this post.'; } } ?>So I basically removed the Die, I then put this code within a post loop so it could grab the post id rather than rescanning all posts.
<?php if (has_post_thumbnail( $post_id )) { //do nothing coz it has 1 } else { video_thumbnails_past_callback(); } ?>It “works”, I’d love to know…… if there is anything wrong with what Ive done as I’m a complete amateur.
Matt
just a quick revision, I didn’t need or want the error handling so i removed
function video_thumbnails_past_callback() { global $wpdb; // this is how you get access to the database $post_id = $_POST['post_id']; $video_thumbnail = get_video_thumbnail( $post_id ); }
The topic ‘Video Thumbnails 2.0 Beta’ is closed to new replies.