Embeds allowing bloggers to easily embed videos from Distrify. Just go to any Distrify film page or player and copy the URL. Paste that URL in any WordPress blog and it will automatically be converted to an embedded Distrify player. If you are logged in to distrify.com it will automatically add your affiliate tracking code to your embeds. Make sure you turn on Auto-embeds in your WP settings and also make sure that the URL is on its own line and not hyperlinked (clickable when viewing the post). The plugin also extracts the still image from the film and saves it as the Featured Image for the post. This actually works for any Embed (not just Distrify) that you embed into your WordPress blog. Author: Distrify Limited Version: 0.3.1 Author URI: http://www.distrify.com License: GPL2 Copyright 2011-2013 Distrify (email : hello@distrify.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** * Does the work of adding the Distrify provider to wp_oembed */ function add_distrify_provider($the_content){ require_once( ABSPATH . WPINC . '/class-oembed.php' ); wp_oembed_add_provider('#https?://(www\.)?(distrify|muvies).com/films/.*#i', 'http://distrify.com/oembed.json', true ); wp_oembed_add_provider('http://muvi.es/*', 'http://distrify.com/oembed.json' ); wp_oembed_add_provider('#https?://.*\.muvies.com/.*reviews/.*#i', 'http://distrify.com/oembed.json', true ); } //add the provider on plugins_loaded. add_action('plugins_loaded', 'add_distrify_provider'); /** * from http://wordpress.stackexchange.com/q/70752/1685 * Automatically set the featured image if an oEmbed-compatible embed is found in the post content. * author: TheDeadMedic * author URI: http://wordpress.stackexchange.com/users/1685/thedeadmedic * */ add_action( 'wp_insert_post', array( 'ofi', 'init' ) ); class ofi { /** * The post thumbnail ID * * @var int */ private $_thumb_id; /** * The post ID * * @var int */ private $_post_id; /** * Sets up an instance if called statically, and attempts to set the featured * image from an embed in the post content (if one has not already been set). * * @param int $post_id * @return object|null */ public function init( $post_id ) { if ( ! isset( $this ) ) return new ofi( $post_id ); global $wp_embed; $this->_post_id = absint( $post_id ); if ( ! $this->_thumb_id = get_post_meta( $this->_post_id, '_thumbnail_id', true ) ) { if ( $content = get_post_field( 'post_content', $this->_post_id, 'raw' ) ) { add_filter( 'oembed_dataparse', array( $this, 'oembed_dataparse' ), 10, 3 ); $wp_embed->autoembed( $content ); remove_filter( 'oembed_dataparse', array( $this, 'oembed_dataparse' ), 10, 3 ); } } } /** * @see init() */ public function __construct( $post_id ) { $this->init( $post_id ); } /** * Callback for the "oembed_dataparse" hook, which will fire on a successful * response from the oEmbed provider. * * @see WP_oEmbed::data2html() * * @param string $return The embed HTML * @param object $data The oEmbed response * @param string $url The oEmbed content URL */ public function oembed_dataparse( $return, $data, $url ) { if ( ! empty( $data->thumbnail_url ) && ! $this->_thumb_id ) { // if ( in_array( @ $data->type, array( 'video' ) ) ) // Only set for video embeds $this->set_thumb_by_url( $data->thumbnail_url, @ $data->title ); } } /** * Attempt to download the image from the URL, add it to the media library, * and set as the featured image. * * @see media_sideload_image() * * @param string $url * @param string $title Optionally set attachment title */ public function set_thumb_by_url( $url, $title = null ) { /* Following assets will already be loaded if in admin */ require_once ABSPATH . 'wp-admin/includes/file.php'; require_once ABSPATH . 'wp-admin/includes/media.php'; require_once ABSPATH . 'wp-admin/includes/image.php'; $temp = download_url( $url ); if ( ! is_wp_error( $temp ) && $info = @ getimagesize( $temp ) ) { if ( ! strlen( $title ) ) $title = null; if ( ! $ext = image_type_to_extension( $info[2] ) ) $ext = '.jpg'; $data = array( 'name' => md5( $url ) . $ext, 'tmp_name' => $temp, ); $id = media_handle_sideload( $data, $this->_post_id, $title ); if ( ! is_wp_error( $id ) ) return update_post_meta( $this->_post_id, '_thumbnail_id', $this->_thumb_id = $id ); } if ( ! is_wp_error( $temp ) ) @ unlink( $temp ); } } Bass – The Earology Dept. https://www.theearologydept.com Where the food sounds good, and the music is pretty tasty too. Wed, 08 Jul 2015 20:04:36 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.20 50391680 cooly g | in session: mixmag https://www.theearologydept.com/cooly-g-session-mixmag/ https://www.theearologydept.com/cooly-g-session-mixmag/#respond Sat, 24 May 2014 00:11:04 +0000 http://www.theearologydept.com/?p=11677   I am kickin’ off Friday night with a FREE DOWNLOAD! Check out the multi-talented Cooly G: In Session courtesy of Mixmag. This one finds the empress of house in fine for, spinning hypnotic, wobbly, off-kilter house, bossy bass, and sounds with a splash of techo, deep, downtempo abstract and a melody of additional sounds …

The post cooly g | in session: mixmag appeared first on The Earology Dept..

]]>

 
I am kickin’ off Friday night with a FREE DOWNLOAD! Check out the multi-talented Cooly G: In Session courtesy of Mixmag. This one finds the empress of house in fine for, spinning hypnotic, wobbly, off-kilter house, bossy bass, and sounds with a splash of techo, deep, downtempo abstract and a melody of additional sounds that’ll clog your ears up with a primo brand of audible splith smoke. Enjoy. Peace.

Also, teleport with me back a few and revisit the classic Cooly G track, Him Da Biz. And for the newbies let’s hit ’em again for the first time.
 

The post cooly g | in session: mixmag appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/cooly-g-session-mixmag/feed/ 0 11677
eric sharp // sharp cuts ep https://www.theearologydept.com/10328/ https://www.theearologydept.com/10328/#respond Sat, 24 Aug 2013 12:01:32 +0000 http://www.theearologydept.com/?p=10328  eric sharp  //  sharp cuts ep Just in time to squeeze the juice out of the summer’s last days, LA-based Eric Sharp‘s Sharp Cuts EP offers a refreshing taste of deep bass, gorgeous vocals and sophisticated collaborations with Anna Lunoe, Daisy O’Dell, Give In and Siouxsie Black. This three track EP is perfect for those …

The post eric sharp // sharp cuts ep appeared first on The Earology Dept..

]]>

 eric sharp  //  sharp cuts ep

Just in time to squeeze the juice out of the summer’s last days, LA-based Eric Sharp‘s Sharp Cuts EP offers a refreshing taste of deep bass, gorgeous vocals and sophisticated collaborations with Anna Lunoe, Daisy O’Dell, Give In and Siouxsie Black.

This three track EP is perfect for those last few daytime poolside jams as well as peak hour deep house club sets the world over. The release promises to be a definitive hit this fall! The Sharp Cuts EP drops September 3rd via Win Music. Peace.

The post eric sharp // sharp cuts ep appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/10328/feed/ 0 10328
the deep end, volume 3 + free download https://www.theearologydept.com/the-deep-end-volume-3-free-download/ https://www.theearologydept.com/the-deep-end-volume-3-free-download/#respond Sat, 04 May 2013 16:06:48 +0000 http://www.theearologydept.com/?p=8454 Like Jacques-Yves Cousteau we’re going into the deep end of the sound-genious pool with the third installment of Bones: THE DEEP END, Volume 3 via Gotta Dance Dirty. The compilation is an exploration into the various permutation of house, garage, funky, tech, booty, and beyond – So dive into this mix and get lost for …

The post the deep end, volume 3 + free download appeared first on The Earology Dept..

]]>

Like Jacques-Yves Cousteau we’re going into the deep end of the sound-genious pool with the third installment of Bones: THE DEEP END, Volume 3 via Gotta Dance Dirty. The compilation is an exploration into the various permutation of house, garage, funky, tech, booty, and beyond – So dive into this mix and get lost for an hour into the depths of a deeper vibe…Peace.

FEATURING MUSIC BY: Al Shaw, Apollos Creed, Breach, Claude VonStroke, Dusky, Thee Cool Cats, Hannah Wants, Hollywood Hills, Hot Natured, Shadow Child, Huxley, MK, Ruff Hauser, Thomas Gandey, and more…

The post the deep end, volume 3 + free download appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/the-deep-end-volume-3-free-download/feed/ 0 8454
matt shadetek // madness https://www.theearologydept.com/matt-shadetek-madness/ https://www.theearologydept.com/matt-shadetek-madness/#respond Tue, 08 Jan 2013 02:22:11 +0000 http://mittenmouthmusic.wordpress.com/?p=7754 Brooklyn producer Matt Shadetek‘s new album, ‘The Empire Never Ended‘ drops March 26th. And just to whet your appetite the first single “Madness,” pretty much lives up to its namesake. It’s like what you’d imagine The Joker wild n’ out to with a fistful of skittles and some drank. The record features the likes of …

The post matt shadetek // madness appeared first on The Earology Dept..

]]>
Didn’t you know?

Brooklyn producer Matt Shadetek‘s new album, ‘The Empire Never Ended‘ drops March 26th. And just to whet your appetite the first single “Madness,” pretty much lives up to its namesake. It’s like what you’d imagine The Joker wild n’ out to with a fistful of skittles and some drank. The record features the likes of RiFF RAFF, Troy Ave, and Jahdan Blakkamoore just to name-drop a few. Oh yeah, turn it up to maximize your listening pleasure. Peace.

The post matt shadetek // madness appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/matt-shadetek-madness/feed/ 0 7754
sepehr // when she’s around https://www.theearologydept.com/sepehr-when-shes-around/ https://www.theearologydept.com/sepehr-when-shes-around/#respond Fri, 04 Jan 2013 23:46:03 +0000 http://mittenmouthmusic.wordpress.com/?p=7666 Yes, we’re letting the music take you there tonight in more ways than one. I’ve reached back in the dust-pin and wiped off this gem. But don’t worry those nasty beats never go out of style. check out DJ/Producer Sephr and the space oddity track, “When She’s Around“. I’m also dropping Sephr’s latest Gulshick Radio …

The post sepehr // when she’s around appeared first on The Earology Dept..

]]>
Music is a drug.

Yes, we’re letting the music take you there tonight in more ways than one. I’ve reached back in the dust-pin and wiped off this gem. But don’t worry those nasty beats never go out of style. check out DJ/Producer Sephr and the space oddity track, “When She’s Around“. I’m also dropping Sephr’s latest Gulshick Radio mix for your listening pleasure. Peace.


The post sepehr // when she’s around appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/sepehr-when-shes-around/feed/ 0 7666
sub focus // tidal wave (ft. alpines) https://www.theearologydept.com/sub-focus-tidal-wave-ft-alpines/ https://www.theearologydept.com/sub-focus-tidal-wave-ft-alpines/#respond Fri, 19 Oct 2012 11:11:02 +0000 http://mittenmouthmusic.wordpress.com/?p=7066 sub focus (nick douwma) is an electronic dance music messiah (which just means he’s really good, no sacrilege intended)! after the jump you can watch (and listen) to his forthcoming single, “tidal wave” ft. alpines”. the new single hits the streets november 4th via ram records. and just in case you didn’t know those are …

The post sub focus // tidal wave (ft. alpines) appeared first on The Earology Dept..

]]>

sub focus (nick douwma) is an electronic dance music messiah (which just means he’s really good, no sacrilege intended)! after the jump you can watch (and listen) to his forthcoming single, “tidal wave” ft. alpines”. the new single hits the streets november 4th via ram records. and just in case you didn’t know those are the wonderful (soul-stirring) pipes of catherine pockson, who sings like an earth angel and just so happens to look like one too. peace.

The post sub focus // tidal wave (ft. alpines) appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/sub-focus-tidal-wave-ft-alpines/feed/ 0 7066
kastle & io // infinite city https://www.theearologydept.com/kastle-io-infinite-city/ https://www.theearologydept.com/kastle-io-infinite-city/#respond Sat, 14 Jul 2012 15:48:10 +0000 http://mittenmouthmusic.wordpress.com/?p=6236 Symbols is the latest release from a Kastle & iO musical coupling (That didn’t sound right did it?). The duo have combined forces and created the  monster 4-track Infinite City EP via Symbols Recordings. After the jump listen to a preview of the EP, as well as the full track, “Only You”. Peace. For more …

The post kastle & io // infinite city appeared first on The Earology Dept..

]]>

Symbols is the latest release from a Kastle & iO musical coupling (That didn’t sound right did it?). The duo have combined forces and created the  monster 4-track Infinite City EP via Symbols Recordings. After the jump listen to a preview of the EP, as well as the full track, “Only You”. Peace.

For more music from Kastle go to iTunes. I love his Stay Forever EP



 

The post kastle & io // infinite city appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/kastle-io-infinite-city/feed/ 0 6236
py // tripping on wisdom (free download) https://www.theearologydept.com/py-tripping-on-wisdom-free-download/ https://www.theearologydept.com/py-tripping-on-wisdom-free-download/#respond Tue, 22 May 2012 03:17:52 +0000 http://mittenmouthmusic.wordpress.com/?p=5635 Jade Elizabeth Pybus bka Py is a succubus of the highest order (compliment). She’s a Σειρήν too of phenomenal ability. She’s a daughter of Achelous. A soulful sister of the order Song of Seduction. This jewel box of a mixtape, Tripping On Wisdom is pretty catacombs and vox chocolat. It is labyrinth of spine tingly …

The post py // tripping on wisdom (free download) appeared first on The Earology Dept..

]]>

Jade Elizabeth Pybus bka Py is a succubus of the highest order (compliment). She’s a Σειρήν too of phenomenal ability. She’s a daughter of Achelous. A soulful sister of the order Song of Seduction. This jewel box of a mixtape, Tripping On Wisdom is pretty catacombs and vox chocolat. It is labyrinth of spine tingly spells by which to ensnare us, so why fight it? Breton, Throwing Snow, Damu, Raffertie and Greenwood Sharps collectively they see it and hear it. Perhaps they’ve a muse, or perhaps it’s the other way round. Whatever and however, Py is here to stay and bless us with her radiantly adorned beauty of a voice. I am gladdened by her arrival into the world of music, and why you may wonder are so many are equally enthralled and rightly smitten? Check out her free mixtape Tripping On Wisdom available via Facebook . And if seeing is believing, after the jump lay your peepers upon the Simone Pellegrini directed visuals for Py’s song “Lungs”. Py is a bridge and a weaver. She takes the yarns of many genres and yes the tapestry is so soulfully sweet. Peace.


 
Track List:

Wonderful World (Cover Interlude)
Lungs
Whispers (feat. iO)
Black Magic (feat. Kadabrah)
Crowns (feat Greenwood Sharps)
Blind (feat. Damu)
These Strings (feat. Throwing Snow)
Marigold (feat. Black and White Diamond Tiles)
Withdraw the Ambassador (feat. BretonLabs)
Video Footage (feat. Raffertie)
 

The post py // tripping on wisdom (free download) appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/py-tripping-on-wisdom-free-download/feed/ 0 5635
NumberNin6 // Bad Medicine EP https://www.theearologydept.com/numbernin6-bad-medicine-ep/ https://www.theearologydept.com/numbernin6-bad-medicine-ep/#respond Fri, 27 Apr 2012 22:30:05 +0000 http://mittenmouthmusic.wordpress.com/?p=5381 You know I keeps it realer than real here and fresh to death. So, it’s only natural and not surprising that I bring you NumberNin6 and these just out the lab killa’ tracks. The Bad Medicine EP packs more bang than a roomful of t-n-t . This young gun Sir Nishant has stepped up to …

The post NumberNin6 // Bad Medicine EP appeared first on The Earology Dept..

]]>

You know I keeps it realer than real here and fresh to death. So, it’s only natural and not surprising that I bring you NumberNin6 and these just out the lab killa’ tracks. The Bad Medicine EP packs more bang than a roomful of t-n-t . This young gun Sir Nishant has stepped up to the plate and knocks it into the stratosphere . Yeah, you’ll want to crank this one extra loud, and if the neighbors come knockin’ just crack it louder! Also, you got to check out his webpage, where you’ll find hidden treasures galore at www.numbernin6.com. Peace.


The post NumberNin6 // Bad Medicine EP appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/numbernin6-bad-medicine-ep/feed/ 0 5381
Deco // Thoughts Of The Past EP https://www.theearologydept.com/deco-thoughts-of-the-past-ep/ https://www.theearologydept.com/deco-thoughts-of-the-past-ep/#respond Fri, 27 Apr 2012 22:14:56 +0000 http://mittenmouthmusic.wordpress.com/?p=5378 DJ, producer, owner of the Deceast label the artist Deco is the consummate Jack of trades. But I’m more concerned with his knack for orchestrating sick beats with a penchant for the bass heavy and dapper dubstep. And really, I could go on and on but like always when it comes to music I like …

The post Deco // Thoughts Of The Past EP appeared first on The Earology Dept..

]]>

DJ, producer, owner of the Deceast label the artist Deco is the consummate Jack of trades. But I’m more concerned with his knack for orchestrating sick beats with a penchant for the bass heavy and dapper dubstep. And really, I could go on and on but like always when it comes to music I like to let it just speak for itself. Peace.


The post Deco // Thoughts Of The Past EP appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/deco-thoughts-of-the-past-ep/feed/ 0 5378