How to add Zoopy video to your Drupal site using CCK and the Embedded Media Field module

I recently created a provider plugin for Drupal's CCK emfield module which allows you allows you to embed a Zoopy video by pasting the url into a cck field:

zoopy page url pasted into cck field

This is a lot easier than having to copy the embed code provided by Zoopy and paste this into a textarea.

The provider plugin then extracts the video code and displays the video on your Drupal site:

zoopy video embedded automatically

Instructions how to install the Zoopy provider file

First install the emfield module (http://drupal.org/project/emfield). You need to have the cck content module enabled and both the Embedded Media Field and Embedded Video Field:

Because the Zoopy provider file does not form part of the default emfield module, you will need to paste the zoopy.inc file available for download here, into your emfield video provider directory. This is a different folder in drupal 5 and in drupal 6:

Drupal 5: sites\all\modules\emfield\contrib\video_cck\providers
Drupal 6: sites\all\modules\emfield\contrib\emvideo\providers

If your server is running PHP < 5.2 you'll need to include an extra file as I use the php function json_decode which is only available in PHP versions 5.2 or greater. I put this file in a folder called php_scripts in my theme folder. If you want to put this file somewhere else you'll have to change this path in the function zoopy_get_json_data. This file is also available for download here. It's called JSON-for-PHP-less-than-5-2.zip and you obviously need to unzip it first.

You can also change the display of the video so that it displays as a clickable thumbnail in views, which on click can take you to the video node or the video in a thickbox popup (if thickbox is installed):

That's it - you should now be able to easily add Zoopy video to your Drupal site using CCK.

Comments

Whole sale Thomas Sabo Charms

Thomas Sabo Charm,
Thomas Sabo has helped the ancient tradition of the charm bracelet make a huge comeback.
Thomas Sabo Online Shop, 70% OFF, Free Shipping!
Thomas Sabo Charms Shop | 2010 New Thomas Sabo Arrived
Once successfully registered ThomasSabo member, you can free get Necklace
Buy Cheap Thomas Sabo jewellery Charms Charm Bracelet at Thomas Sabo online shop suit your Thomas Sabo preferences. You Thomas Sabo jewellery can choose Thomas Sabo sale to have that Thomas Sabo UK rincess?looks cheap Thomas Sabo with typical ball Thomas Sabo on sale gowns and tiaras Thomas Sabo discount or look sweet and discount Thomas Sabo innocent with cheap Thomas Sabo on sale simple dress discount Thomas Sabo on sale gown designs or to have that cute,fun cheap Thomas Sabo sale and flirty looks. 50 fashion prom discount Thomas Sabo sale dress inspired is what you are looking for
We hope you have fun combining and creating your own personal jewellery.
Charm up your life!
Tags:Thomas Sabo Charms | Charms |Silver |Bracelets | Earrings | Necklaces | Charm Carriers
schmuck Thomas Sabo | schmuck | Sabo schmuck | Thomas Sabo shop | Thomas Sabo online |
Thomas Sabo anh?nger
Thomas Sabo jewellery | Thomas Sabo kette |
Thomas Sabo bracelet | Thomas Sabo armband
Whole sale Thomas Sabo Charms
Whole sale Thomas Sabo
Whole sale Thomas Sabo Necklaces
Who sale Spare parts for cars
Who sale shirt

Thanks

I put this file in a folder

I put this file in aSEXLEKSAKER folder called php_scripts in my themes folder. If you want to place this file elsewhere will have to change this path according to the zoopy_get_json_data

Zoopy being an online social

Zoopy being an online social media community its much easier to upload videos to zoopy and get that right into your own site like mine was cheap jump drives. Even a newbie will be able to add it by following the instructions here. Thanks for such information sharing with us. Looking for information from this site.

I must admit that this post

I must admit that this post really interesting, thanks for the writing! Unterwaesche

Zoopy Video

This is a wonderful presentation, in which he has briefed & illustrated all the information in a very organized way.
It is so easy to implement, I will, on my next project.
With video on my website, giving a good first impression became an easy job.
Sell Silver Houston

Abercrombie

One of the oldest names in the fashion industry . Among the younger generation who are aware of fashion clothes from Abercrombie is a registered trademark of sophistication. Cheap Abercrombie Shorts Cheap Abercrombie Shorts Cheap Abercrombie and Fitch Shorts Cheap Abercrombie and Fitch Shorts discount Abercrombie and Fitch Shorts discount Abercrombie and Fitch Shorts Abercrombie and Fitch Shorts sale Abercrombie and Fitch Shorts sale buy Abercrombie and Fitch Shorts buy Abercrombie and Fitch Shorts Cheap Abercrombie Fitch Shorts Cheap Abercrombie Fitch Shorts discount Abercrombie Fitch Shorts discount Abercrombie Fitch Shorts Abercrombie Fitch Shorts sale Abercrombie Fitch Shorts sale buy Abercrombie Fitch Shorts buy Abercrombie Fitch Shorts discount Abercrombie Shorts discount Abercrombie Shorts Abercrombie Shorts sale Abercrombie Shorts sale buy Abercrombie Shorts They are fashionable sportswear and fashion clothing created for gentlemen dressed collegiate and post modern, contemporary and ladies

ev dekorasyon yaptırmak hicte

ev dekorasyon yaptırmak hicte kolay degildir. bu nedenle dekorasyon yaptırırken dikkatli olmanız gerekir. mobilya dekorasyonu, mutfak dekorasyon ve cesitli ev dekorasyonları bulunur. iyi arastirma yaparak size uygun ev dekorasyonu bulmanız gerekir.

Sytesnetwork sitesinde güncel

Sytesnetwork sitesinde güncel oyunlar
ile ilgili yamalar ve indirme linkleri bulunduran bir web sayfasıdır ve blog
tabanlı bir hizmet vermektedir. Site içeriğinden üye olmadan
yararlanabilirsiniz. Ayrıca oyun indirme
alternatifi sunar. Bu alternatiften yararlanmak isteyenleri
sytesnetwork web sayfamıza
bekliyoruz.

Zoopy have changed the object

Zoopy have changed the object that they return - instead of it being a single object which contains the data, it's an object which contains the object which contains the data.

If anyone would like to patch zoopy.inc so it works again, here we go:

--- zoopy.inc 2009-03-20 08:17:16.000000000 +0200
+++ zoopy.inc 2010-02-19 16:16:15.000000000 +0200
@@ -114,7 +114,7 @@ function emvideo_zoopy_extract($embed =
$data = zoopy_get_json_data($embed);
//print_r($data);die();
// Then get the ID through a regex
- preg_match('"id=[0-9]+"', $data->html, $match);
+ preg_match('"id=[0-9]+"', $data->oembed->html, $match);
if (!empty($match[0])) {
$zoopy_video_id = str_replace('id=', '', $match[0]);
return $zoopy_video_id;

Or simply change line 117 from:
preg_match('"id=[0-9]+"', $data->html, $match);

to:
preg_match('"id=[0-9]+"', $data->oembed->html, $match);

Mother's day flowers

'Mother' is like an angel sent from heaven above. She is the sweetest and most delicate of all. There is no love like a mothers love. A mother's love is forever strong, never changing for all time and when her children need her most, a mother's love will shine. Be thankful to your mothers, for the unconditional love, comforting hugs and kindness she bestows. Make this Mothers Day special for your mother by sending her mother's day flowers

Re:

the Zoopy provider !!!!!!!!!!!!!

your server is running PHP < 5.2 you'll need to include an extra file as I use the php function json_decode which is only available in PHP versions 5.2 or greater. I put this file in a folder called php_scripts in my theme folder. If you want to put this file somewhere else you'll have to change this path in the function zoopy_get_json_data. Thank you,,.Internet Cowgirl

It's complicated

I find the module a little complicated. http://www.tiensshop.com http://www.tienshealth.co.uk/

Thanks for this module,

Thanks for this module, Charles - I'm using it on http://www.WomensHealthsa.co.za Except that it stopped working today! I'm not sure why - took a quick look through the internals, and the returned JSON data doesn't seem to have changed much, only slightly. See below. So I can't figure out if an API change has led to this not working, or if it's something else. Is this working for anyone else? Also, it's been suggested that you turn this into its own module, rather than as a file in the emfield issue queue. Any plans for that?
    
      This is the current (2009-02-24) format of the returned object
        stdClass Object
        (
            [version] => 1.0
            [title] => Evita appears on Bap TV
            [author_name] => Evita
            [author_url] => http://www.zoopy.com/Evita
            [provider_name] => Zoopy
            [provider_url] => http://www.zoopy.com
            [html] => ...
            [thumbnail_url] => http://stream.zoopy.com/media/cache/2008/05/22/2641/9434/thumb-640x640f.jpg
            [thumbnail_width] => 445
            [thumbnail_height] => 335
        )

     
    
    
 
    The format as at 2010-02-02 is:
    
    stdClass Object
(
    [oembed] => stdClass Object
        (
            [type] => video
            [version] => 1.0
            [title] => Sasol Milk Bottles that turn green
            [author_name] => rickstar
            [author_url] => http://www.zoopy.com/rickstar
            [provider_name] => Zoopy
            [provider_url] => http://www.zoopy.com
            [width] => 640
            [height] => 480
            [html] => ...
        )

)

      

Your post helped me to add

Your post helped me to add some nice videos to my drupal web site.Thanks bro linux web hosting

You better to explain about

You better to explain about youtube video to add in drupal blog. Expert in Boilerjuice

The screenshots and captions

The screenshots and captions make it really easy to understand. It's great to have more choices than just embedding YouTube videos. I'm looking forward to giving Zoopy a try.

Extra Bucks

More Information

Thanks for such information sharing with us. Looking for information from this site.

Keyboard Reviews

Thanks

Hey thats very informative!! thanks much!!! CRM software

Zoopy Video

The article has helped me adding videos to my site and that too quite easily.Even a newbie will be able to add it by following the instructions here.

annuity quote

Zoopy being an online social

Zoopy being an online social media community its much easier to upload videos to zoopy and get that right into your own site. Even a newbie will be able to add it by following the instructions here. Thanks for such information sharing with us. Looking for information from this site. Car rentals thanks

Zoopy in Drupal

Thank you for sharing these great video embedding tips. The screenshots and captions make it really easy to understand. It's great to have more choices than just embedding YouTube videos. I'm looking forward to giving Zoopy a try. farmville cheats

ZOOPY VIDEO TO DRUPAL SITE !!!!!!!!!

The Drupal is one of the fast emerging sites and the zoopy video inclusion in the site gives the users the chance of sharing the mobile clips and video with others,,...The simple steps to be taken will embedding the zoopy video is clearly provided and the zoopy video can be used for uploading and managing the mobile clips,,,... Thank you,,,..freeware downloads

CCD emfield module

CCK emfield module is a plugin for Drupal, we can embed any video to the site very good information, thaks for sharing, it will help to develop drupal in a different way. BeautyItems

Linking video

Drupal is a powerful platform, feature rich & stable. I have read the above & I would like to say thanks for the useful information, your article has included. You have illustrated every thing in order, very clear, straight & easy to implement steps. search engine optimisation

Excellent plugin - thank

Excellent plugin - thank you!
Buy Custom Essay
Buy Term Paper
Buy Research Paper

paid to upload

paid to upload is the way to go for get paid to upload files and upload files to get paid paid to upload.

Nice one

Awesome... explained in step by step this will help to learn how to add zoopy videos. Game for fun

Thanks for the tutorial on

Thanks for the tutorial on using Zoopy in Drupal sites. Inner Game | Seduction Community.

Its after a long long search

Its after a long long search i got an answer to my much troubled problem of adding media files. Drupal CCK module which allows to embed Zoopy videos by just copy paste is really great, Zoopy being an online social media community its much easier to upload videos to zoopy and get that right into your own site. The article has helped me adding videos to my site and that too quite easily.Even a newbie will be able to add it by following the instructions here. Thanks for such information sharing with us. Looking for information from this site. clothing jewelry

There was only one issue with

There was only one issue with this module. I was not able to have a custom sized video using it. That was my only concern. Nutronix

When this module first

When this module first introduced, I thought it would be same as the other drupal video modules. But I was totally wrong. It is much easier to use than the other ones. Travian cheats

EMBED ZOOPY VIDEO's !!!!!!!!!!!!!!

The drupal is providing a lot of facilities,,,... One such facilities is to easy embed the zoopy videos,,.. which can be used in the mobile and other accessories,,.. Thank you!!!!!!!!!!! Hotel copenhagen

this is great.i thought this

this is great.i thought this was not possible in drupal but you made it happen. 90 day loans steam cleaners anxiety attacks

This is a real time saver for

This is a real time saver for me. I have spent lot of time in embedding videos in my posts in my blog powered by drupal and this module did it very easily for me. Decorative Ribbons

Marvelous

The web development was marvelous. Earlier i was frustrated because of the looks of my website. This park helped me to increase the traffic, update the information and attractive. It adds my value. Hotel i københavn

Zoop is an online and mobile

Zoop is an online and mobile system. zoopy vistors has more comfortable. It is one of the new technque in the world. zoopy vistors many of them in country. Game for fun

ZOPPYYY VIDEOOOOOOOOOOO!!!!

With CCK in drupal site ,it's now easy to add zoppy video , with which we can load our mobile videos,,,................. The information provided is really good ,,... Drupal is now becoming a great site,,... Thank you!!!!!!!!!!! hårvoks

This Tutorial is amazing, i

This Tutorial is amazing, i was looking for this on couple of web sites and somehow i couldn't do it. Thanks for the help Screenquip - Audio Visual Equipment rentals

how to install the Zoopy Videos.

Ok, I sorted out the answer to my question. To create a custom Date and Time format which will display just like in the tutorial, do the following (from the menu as an administrator): :Drupal -> Administer -> Site Configuration -> Date and Time -> Formats -> Add Format -> Format string: H:i (This adds a format type to the drop-down selection which only displays hours and minutes.) then: :Drupal -> Administer -> Site Configuration -> Date and Time -> Formats -> Add format type -> Name: Time only -> Type: timeonly -> Save configuration. free ads |job|electric adjustable bed

Add Zoopy video o Drupal Site!!!!!!!!!!!

Drupal's CCK emfield module which allows us to embed a Zoopy video by pasting the url into a cck field is very much useful. Zoopy is an online and mobile social media community where you can upload, share and discover videos. i need some more information about CCK and Embeded media field module can any one give the link or site information..Thanks for sharing this information.. Billig voks

Zoopy does not currently

Zoopy does not currently provide the video info as xml. i tried Version 5 and 6. Then I came to know that zoopy are working on a public api. Ferienhaus Norwegen

Zoopy video !!!!!!!!!!

The tutorial helped me to add zoopy video in my drupal site. I really loved the way that you mentioned in the tutorial.Drupal's CCK emfield module which allows us to embed a Zoopy video by pasting the url into a cck field is very much useful. Zoopy is an online and mobile social media community where you can upload, share and discover videos. Zoopy visitors HAS more comfortable experience over local bandwidth and provider now increased our upload file size limit from 100mb to 200mb.THanks for sharing this information... Kopenhagen hotel

auto parts

it's very nice article. i'm new to this so when i try to put the video it say some warring msg .. but thanks for this information.. auto parts

Information of CCK and Embeded media

This is really very good information, i never know that we can add video file to drupal, i need some more information about CCK and Embeded media field module can any one give the link or site information. Wholesale eyeshadow

Tags for How to add Zoopy video to your Drupal site using CCK and the Embedded Media Field module