I am interested in using this with Blip.tv. Has anyone done this and if yes. can you post the code?
Thanks
Rich
| Comment | File | Size | Author |
|---|---|---|---|
| #19 | 270279_video_filter_bliptv-19.patch | 2.67 KB | jtsnow |
| #12 | 270279_video_filter_bliptv.patch | 1.47 KB | blackdog |
| #9 | video_filter5.x-2.x-dev-blip_support.patch | 1.16 KB | mkrakowiak |
| #4 | video_filter.codecs.inc_.zip | 1.49 KB | mkrakowiak |
Comments
Comment #1
mkrakowiak commentedI would be happy to see a filter for Blip.tv, too.
Comment #2
mkrakowiak commentedOK, this is not a perfect solution, but it works. This code needs to be added into the video_filter.codecs.inc file:
Now, this is important:
Once you're on a blip.tv page where your video is, you have to click on "Visit show page" on the right sidebar, click on the video of your choice, and then copy the URL from address bar. This is required because permalinks created by blip.tv are NOT the right links to videos. You can check that by taking a look at the "embed this video" code. The URL that you should embed looks like this: http://membername.blip.tv/#1234567
Comment #3
JohnnyMoney commentedSorry tried your solution and is not working for me.
Does one add this code to the end of the file? If so it screws my site, cannot see it at all. I notice the original file begins with <?php but has no closing php tag. If I add your code to the end then the file has the ending php tag. is that correct?
Comment #4
mkrakowiak commentedIt should work if you replace the original video_filter.codecs.inc file with the one attached here (certainly, unzip it first).
Comment #5
JohnnyMoney commentedThanks, I confirm that this now works for Blip.
Unfortunately neither Blip nor Vimeo embedded videos in my Drupal site allow the Full Screen Toggle.
The only one that allows this without taking me to their site is Revver.
Comment #6
mkrakowiak commentedI'm not sure about Vimeo, but Blip provides a full screen toggle. And this works right from user's website.
Comment #7
JohnnyMoney commentedWell, the full screen toggle wasn't working on my site using the video_filter module so now I have removed this module and simply embedding the videos with the embed code from Blip makes them work perfectly and do toggle full screen.
Comment #8
blackdog commentedPlease roll a proper patch - http://drupal.org/patch/create
Comment #9
mkrakowiak commentedHere's a patch for Blip.tv support for D5.
The filter accepts URLs like http://username.blip.tv/#1036772
Comment #10
blackdog commentedWill test this later today. Thanks mkrakowiak!
Comment #11
blackdog commentedI don't really like how this looks. Blip has some strange ways of embedding videos, video id don't match with the id in the URL, and while this solution does work, it feels a bit hackish.
Comment #12
blackdog commentedIf someone still wants to use this, here's an updated patch that allows fullscreen and uses height/width default settings.
Comment #13
mkrakowiak commentedYes, it is hackish - because Blip uses two kinds of links: one with the username and the other one without. If you try embedding a Blip video with the latter URL, you will probably embed... some other video, not the one you want.
Thanks for your work on the module, blackdog.
Comment #14
idflorin commentedHow to embed with this [video:http://blip.tv/file/2140870] ? which regex is good ?
Comment #15
blackdog commentedShort answer, you can't. The embed code that blip.tv uses for that file is some sort of randomized string, which we can't use. If you need to embed blip.tv videos, see comment #2 in this issue, and you'll need the patch from #12.
I'm gonna set this to postponed until we can figure out an easy way to instruct users how to embed blip.tv videos, or until someone figures out a way to use this module to embed all videos from blip.tv, without the need for instructions.
Comment #16
idflorin commentedEmbedded Media Field is suporting [video:http://blip.tv/file/2140870] , can't It's metod be implemented in this module ?
Comment #17
blackdog commentedI'll take a look to see how emfield has solved it. Thanks.
Comment #18
Freso commentedSeems like they use the page id to fetch an RSS feed and do some API calls to get the needed information.
http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/emfield/con...
Also, let's get this in 6.x-2.x first and then backport to 5.x-2.x if needed. :)
Comment #19
jtsnow commentedI've adapted the code from emfield to work with video_filter. Works like a charm. Here is the patch.
Comment #20
jtsnow commentedNot sure on the ratio setting in that patch. That may need tweaking.
Comment #21
blackdog commentedGreat work jtsnow! I'll take a further look at this a.s.a.p. Thanks!
Comment #22
blackdog commentedCommitted as is (http://drupal.org/cvs?commit=245574).
Blip.tv seems to use different ratios for different players/videos, so I left it as in the patch for now.
Thanks jtsnow!
Comment #23
blackdog commentedComment #25
mkrakowiak commentedBlackdog, sorry to be late with the review. It works perfect now. Thank you and thanks jtsnow!