This plugin has been discontinued and a replacement migrator plugin has been released in its place. For details, please see this blog post.
This plugin has been discontinued and a replacement migrator plugin has been released in its place. For details, please see this blog post.
This is a great plugin, I use it for some of my videos. Keep up the good work!!
Glad you all like it. ๐
Simply outstanding. I tried 3 other plugins before this and none were as easy or as intuitive to use as yours.
Bravo!
Version 4.0.0 released! It’s totally awesome and a recode from the ground up. I think you guys will like it a lot. ๐
This new version is awesome. The added myspace tags are just what I have been looking for. Keep up the good work. We appreciate it.
This plugin is terrific!
The repeated failures to publish a nice post on WP were driving me mad. Thanks Viper, you’ve got a wonderful invention here.
love you man you rock really easy to install and 100% working
Thanks guys. ๐
hey viper, could you also add Mojiti into the list?
I found your plug in excellent and easy to use. Kudos!
[quote comment=”14221″]hey viper, could you also add Mojiti into the list?[/quote]
Looks doable. ๐
Thanks for such a wonderful plugin for WordPress.
Makes posting a video so much easier.
Question: How about adding support for http://www.LiveVideo.com
Thanks and Happy Holidays.
Pingback: Daikos.Net
[quote comment=”14305″]Question: How about adding support for http://www.LiveVideo.com[/quote%5D
Looks doable.
Thanks so much – Happy Holidays
Hi, I noticed that after updating to v4.0 (from v3.0), all my YouTube video boxes which were “previously” left-aligned are now ALL AUTOMATICALLY CENTERED by v4.0. Umm, what do I do to get it back left-aligned (I preferred this). The centered videos have affected the aesthetics/alignment of certain elements in my post entries.
This looks like a great plugin. I’ve tried several and they didn’t work. The plugin is activated–there was a problem with WordPress Email Notification Plugin not allowing the bbcode buttons to be displayed–and the buttons work fine, but when I insert a YouTube address in and it places it in my post, it doesn’t actually load the vid. All I get is [youtube]blah[/youtube] in the post.
What am I missing? Thanks.
Belay that last request. Stupid me–when I imported my old blog to the wp blog it must have stripped code from the url. By inputing the original link everything is fine. Plug in works great! Thanks a million
[quote comment=”14650″]The centered videos have affected the aesthetics/alignment of certain elements in my post entries.[/quote]
I’ll make that configurable via the options page in the next version, but for now, just edit the .css file that comes with the plugin and then hard refresh (control + F5) to flush your cache.
Thanks just what I was looking for
Thanks for the great plugin. I have just installed it at
http://www.MutableTech.com and it works very nicely.
Viper,
is it possible to avoid div tags wrapping videos? They may generate invalid HTML code (for instance, if they are between p and /p tags).
I think it would be better using span tags, or at least being configurable; I have made that change by myself to your code.
[quote comment=”15204″]Viper,
is it possible to avoid div tags wrapping videos? They may generate invalid HTML code (for instance, if they are between p and /p tags).
I think it would be better using span tags, or at least being configurable; I have made that change by myself to your code.[/quote]
This isn’t an issue in WordPress 2.1 (the version I coded this in) as you can see with my demo page. I simply forgot about that bug in WP 2.0.x. ๐
I’ll check the version and use spans for versions affected by the
wpautop()bug(s). ๐[quote comment=”15217″]This isn’t an issue in WordPress 2.1 (the version I coded this in) as you can see with my demo page. I simply forgot about that bug in WP 2.0.x. ๐
I’ll check the version and use spans for versions affected by the
wpautop()bug(s). :)[/quote]Viper,
I agree with you that wpautop() is really terrible :s. I realized when trying to generate valid XHTML code.
I have modified your code to use span instead of div so as to get valid XHTML code; moreover, I’m inserting some HTML code (between object and /object tags) as alternate content to pass some accesibility validators ๐
You can see it in
http://jordisan.net/modules/wordpress/2007/feliz-mmvii-y-todo-eso/
I think both features would be nice to be included in future releases of your plugin ๐
Ups… sorry for my previous comment.. It’s a little bit confusing :s
I’m just suggesting you to use span (instead of div) to avoid XHTML fails, and to put some alternate content between object and /object (a link to the video) to get better accesibility.
Thanks!
I’ve noticed that quicktime videos doesn’t show with firefox, so why dont you use the method explained at A List Apart?
http://alistapart.com/articles/byebyeembed
The problem is that it uses conditional comments to hide to IE an object tag and HTML comments within wordpress posts seems to cause some problems.
So I’ve used a class which hides that part from IE.
I’ve added this line to wp_head() function:
[code removed]
I hope this helps
thanks for making this plugin. it works exactly as it should and is not filled with unnecessary extras. Thanks much!
Some problems with hml markup in the previous comment: the P tags are not mine ๐
[quote comment=”15308″]Some problems with hml markup in the previous comment: the P tags are not mine ;)[/quote]
I know, the code display plugin I use is crappy. ๐
I’ve had alt text in there before in previous versions, but it never seemed to show up (even when the item was 404), so I removed it. I forgot about accessibility though, so I’ll put it back in.
As for Quicktime, this it the method I used: http://realdev1.realise.com/rossa/rendertest/quicktime.html
It works perfectly fine for me in Firefox, but I’ll give A List Apart’s method another look (seen it before, but opted to go with the other method).
I’m speaking about the versione 4.0.0
The method you linked works, but doesn’t seem that your plugin apply that method ๐
Both ways uses 2 nested object tag, with the version 4.0.0 of the plugin I see only 1 single tag… ๐
[quote comment=”15311″]Both ways uses 2 nested object tag, with the version 4.0.0 of the plugin I see only 1 single tag… :|[/quote]
Hmm, I mighta ended up removing it ’cause it wasn’t working right in IE or something. I can’t remember. Can’t believe I didn’t test it in FF after the change!
Hi kyle!
Did you changed the way that the video appears in the RSS Feeds?
I’ve instaled the Viper 4.0.0 with WordPress 2.0.6. Now in my feeds I only have the URL of the video, instead the video object.
Thanks,
Leo
[quote comment=”15376″]I’ve instaled the Viper 4.0.0 with WordPress 2.0.6. Now in my feeds I only have the URL of the video, instead the video object.[/quote]
That was done on purpose.
<object>tags cannot be in feeds.Is it possible to change it back?
Almost all the RSS feeds that I subscribe shows the embed videos. I think it’s too much text and a little ugly. How can I put the videos back on the feeds?
Thanks ๐
[quote comment=”15392″]Is it possible to change it back?[/quote]
I won’t be, no. I don’t want to make non-validating feeds and feeds that may break some feed readers. You’re welcome to though.
Open the plugin and find this line:
[code]if ( is_feed() ) {[/code]
Replace it with this:
[code]if ( TRUE === FALSE ) {[/code]
When inserted a video of google or youtube does not appear the button to see in complete screen.
How I can see that button?
Thanks
[quote comment=”15485″]When inserted a video of google or youtube does not appear the button to see in complete screen.
How I can see that button?
Thanks[/quote]
Huh?
see this image
[quote comment=”15490″]see this image[/quote]
You can’t. I have no control over what it looks like because the file is coming off their servers. I’m just using the embed code (basically) which they provide.
Pingback: ach, รฦรยผbrigens ...
Thanks for you plugin!!
It helps me a lot! man!
see you!
Hi! Your plugin works just excellent to my WP Blog, but I want to use some “GoEar.Com” files, like I use a youtube archive .. so, I need to modify your plugin. It works fine modified, and I give you the permalink to download and view my hack to your plugin. Hope you likeit! Goear.com itรโรยดs like youtbe.com but it works with mp3 files.
No more chat, you can download “our” (lol) plugin at: http://www.ezenlaweb.com/vipers_videoquicktags+GOEAR.rar
Thanx a lot for your great plugin. ๐
Hi your plugin is excellent! but I don’t understand what part of the code I have to put to show myspace videos
[quote comment=”15693″]Hi your plugin is excellent! but I don’t understand what part of the code I have to put to show myspace videos[/quote]
MySpace support was added in version 4.0, so for now, you’ll have to live without it. Sorry.
Hi,
I just got a notice from my hosting that my website was killing their servers. Since there wasn’t anything different from previous weeks i tried to “debug” this. I found out that it takes forever to load the youtube videos. So i went to youtube.com and it seems to be down. I wonder if youtube being down and the plugin trying to open the video could cause this.
I use version 3.0.0
thanks ๐
[quote comment=”15822″]I wonder if youtube being down and the plugin trying to open the video could cause this.[/quote]
Nope. The loading of the YouTube video is client side, not server side. You server just spits some HTML (text) and people’s browsers figure out that they need to connect to YouTube.com and download a file.
You are a genius. Thanks for that plugin.
Pingback: la vida es dura
Hi! Thanks for the great plug-in!
I use FF 2.0.0.1 & WP2.1 and your plugin version 3.0.0 (and inserted the – include(ABSPATH . ‘/wp-content/plugins/vipers_videoquicktags/resources/buttonsnap.php’); – line )In this config the quicktags do not show up in the WYSIWYG. After changing the userprofile in WP to “not using” the WYSIWYG the quicktags appeared in the remaining “code”-window…. So I can use the plug-in ๐ but I would like them also in the WYSIWYG option. Any ideas?
btw: The videos posted with the old version of the plug-in still work perfect!!
Hi there! I upgraded to WP 2.1 today, and it seems that this plug-in is no longer working.
[quote comment=”16013″]Hi there! I upgraded to WP 2.1 today, and it seems that this plug-in is no longer working.[/quote]
I assure you, it does, for the most part. I’ve been using WordPress 2.1 for ages now. ๐
The only thing that won’t work is the buttons in TinyMCE. That’s fixed in v4 due to an extensive recode, but I don’t recommend using it yet. Just disable the rich editor for now.