Closed (works as designed)
Project:
Video Filter
Version:
6.x-2.0
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
27 Nov 2007 at 00:04 UTC
Updated:
7 Jan 2009 at 04:19 UTC
Jump to comment: Most recent
Comments
Comment #1
fokkezb commentedYou probably still need to choose a default video site by going to the input filter settings. In the next version I will fall back to youtube if none is set.
Comment #2
skullJ commentedHey,it was hard for me to find the "input filter settings"!
Just notice this to your module content to help the other people ::
Administer › Site configuration › Input formats › Configure
Thank you
Comment #3
manifactura commentedHi
Can you make more clear of how does this filter works?
I want to embed some googlevideos but i havent managed to get it work.
What should I do?
I made the appropriate input format but nothing.
Thanks
Comment #4
Anonymous (not verified) commentedJust go to
Administer › Site configuration › Input formats › Configure
As said above, and enable the video filter on your input format.
Once done, just use the following as an example
[video:6HOnpHSgMvw]
directly putting the id in there. It worked for me on the youtube videos, i haven't checked the other ones yet.
Comment #5
magickz commentedif I try your example I get the following message:
<!-- VIDEO FILTER - INVALID CODEC IN: [video:6HOnpHSgMvw] -->but if I try to insert something like this: [video:http://youtube.com/watch?v=Wa2CV9se3_I] I just have a white space in my blogentry.
If I have a look in the html source of the page in my browser I can see
< object type="application/x-shockwave-flash" width="420" height="301" data="http://www.youtube.com/v/Wa2CV9se3" >
< param name="movie" value="http://www.youtube.com/v/Wa2CV9se3" / >
< param name="wmode" value="transparent" / >
< /object >
here I can recognize that the "_I" is truncated from the URL...
does anybody have an idea how to get this working in drupal 6.1?
Comment #6
lance.hart commentedAny youtube with a _ in the id wasn't showing but all the others were. Hopefully the author will fix but here's the easy fix.
Line 11 of video_filter.codecs.inc
Change:
'regexp' => '/youtube\.com\/watch\?v=([a-z0-9]+)/i',
To:
'regexp' => '/youtube\.com\/watch\?v=([_a-z0-9]+)/i',
The regex wasn't allowing the underscores. Hope that helps!!
-Lance
Comment #7
CaldwellOne commentedI think what people are looking for is this.. this only works if you put the tag [video:video-URL-here.com]. So if you just put the url http://www.youtube.com/watch?v=5EVcYyhZAq0 It doesn't work. it just shows the link. You need to put the video tag like below... So follow the instructions above to turn the module on and that will allow you to embed videos by putting in links like the one below...
[video:http://www.youtube.com/watch?v=5EVcYyhZAq0]
Hope this clears things up...
Comment #8
Valery Landon commentedand please how do you link to a video you have upload on your website localy?
Comment #9
shedevches commentedHi there,
I've just installed this and following this thread, it seems I have to set the default to YouTube, however I cannot find this option?
When I go to Home » Administer » Site configuration » Input formats
And click on "Configure" » Filtered HTML / or / Full HTML
I check the box next to Video Filter / Substitutes [video:URL] with embedded HTML.
Save - Then go to "Configure"
There are only 3 options to change:
URL filter (72 characters)
Video filter (400 width, 400 height)
Autoplay yes/no
I'm expecting, from the comments on this post, there to be a YouTube, GodTube, etc option here but there isn't..
Please tell me I'm looking in the wrong place and where I should be looking for the option to make YouTube the default?
Comment #10
shedevches commentedDid I put too much info? :)
I just wanna find out where to set "YouTube" if it's not in the Input formats options?
Comment #11
SarnXero commentedI think you just have to configure the default filter and select the video filter
that worked for me
creating a new filter did not work
Comment #12
TheresaM commentedhere's a site that will help load videos from your local website, just input the (your web address,file path loocation, ect,,, ), generate the code then copy the code into a node. This allowed me to play flash video files locally without having the SWF tools available for drupal six
http://cit.ucsf.edu/embedmedia/step1.php
Comment #13
pracha commentedThanks for your information.........