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 ); } } Los Angeles – The Earology Dept. https://www.theearologydept.com Where the food sounds good, and the music is pretty tasty too. Fri, 29 Apr 2016 15:14:50 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.20 50391680 swimm | beverly hells ep https://www.theearologydept.com/13579-2/ https://www.theearologydept.com/13579-2/#respond Fri, 29 Apr 2016 15:12:02 +0000 http://www.theearologydept.com/?p=13579   swimm | beverly hells ep   Los Angeles-based Swimm (Chris Hess and Adam Winn) release their 6-track Beverly Hells EP via 24 West Records. This isn’t just another tidy release, these are a pocketful of songs of an ebullient vibrancy, and a few all aglow with a lustrous meditative quality (me thinks the tracks …

The post swimm | beverly hells ep appeared first on The Earology Dept..

]]>
swimm  |  beverly hells ep
 

swimm | beverly hells ep

 
Los Angeles-based Swimm (Chris Hess and Adam Winn) release their 6-track Beverly Hells EP via 24 West Records. This isn’t just another tidy release, these are a pocketful of songs of an ebullient vibrancy, and a few all aglow with a lustrous meditative quality (me thinks the tracks All The Time and Suddenly a thoughtful nods to introspection). Good music and a couple of good guys. Psst! My all time favorite Swimm track is Shy, just thought you would like to know. Perfectly perfect! Peace.
 

 
Band: Swimm
Release: Beverly Hells EP
Label: 24 West Records
iTunes

The post swimm | beverly hells ep appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/13579-2/feed/ 0 13579
gallant | open up https://www.theearologydept.com/gallant-open-up/ https://www.theearologydept.com/gallant-open-up/#respond Sun, 24 May 2015 05:26:27 +0000 http://www.theearologydept.com/?p=12163   Gallant is a product of Los Ang and imagine there is much more to this young lion that the LA experience. He’s done nothing less than slipping our ears a bit of tongue on his steady rise to fame and fortune. And in case you missed his previous Talking In Your Sleep, well now …

The post gallant | open up appeared first on The Earology Dept..

]]>
Screen Shot 2015-05-24 at 1.21.14 AM
 
Gallant is a product of Los Ang and imagine there is much more to this young lion that the LA experience. He’s done nothing less than slipping our ears a bit of tongue on his steady rise to fame and fortune. And in case you missed his previous Talking In Your Sleep, well now can. Make sure you keep your eyes and ears open for this one ’cause he ain’t playing, no not at all. Peace.
 

 
Artist: Gallant
Track: Open Up
Lyrics:
 
if im drowning wont you take me to the waterfall?
lay stones in front of those banks
and keep me underwater til im breathing
throw me in the fire til im frozen
teach me til i dont know what im doing

why dont we open up sometime?
sell me that gold in your veins
i want your fortress next to mine
every nightmare on your plate
can i trust that you wont mind
my sanity slipping away?
why dont we open up?

if youre thirsty, let me lead you to the maranjab–
plant trees in spite of those rays
and leave you in the sun until youre soaking
throw you in the fire til youre frozen
teach you til you dont know what you do

lets be the last ones

The post gallant | open up appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/gallant-open-up/feed/ 0 12163
private island | a good look ep https://www.theearologydept.com/private-island-good-look-ep/ https://www.theearologydept.com/private-island-good-look-ep/#respond Fri, 19 Sep 2014 13:53:06 +0000 http://www.theearologydept.com/?p=12927   private island | a good look ep   Los Angeles is known for just about every form of musical entertainment, so it’s no surprise to see Private Island rise to the top of the best bands The City of Angels has to offer. The band’s A Good Look EP is a handy collection of …

The post private island | a good look ep appeared first on The Earology Dept..

]]>
private island  |  a good look ep
 

private island | a good look ep

 
Los Angeles is known for just about every form of musical entertainment, so it’s no surprise to see Private Island rise to the top of the best bands The City of Angels has to offer. The band’s A Good Look EP is a handy collection of four songs, and they’re a good indication that this band will have a future taking up residence in my earhole. After the jump, check out the audios for the tracks Bear Hands, Don’t Call Me, and Dissolve. Here’s to a full-length from this outfit. Peace.
 

 

 
 
Band: Private Island
Release: A Good Look EP
Favorite Track: Bear Hands
iTunes
Amazon
Google Play
 
Private Island, Bear Hands: Lyrics
 
Oh I’m not sure
I never see you on that avalanche
I know it’s written in the fire along with all the other things
They dragged you far to foreign lands
Away from my open hands

Oh I never let you down
I never see you around here
So what the fuck do you want, besides sucking my blood
Just to taste the real, just to feel you’re real

I’m not sure your words are covered in analogies
I wish you’d spell it out so I don’t have to play the fool
What did you find yourself in foreign lands
That sounds like bullshit I understand

Oh I never let you down
I never see you around here
So what the fuck do you want besides sucking my blood
Just to taste the real, just to feel you’re real

Oh I never let you down
I never see you around here
So what the fuck do you want besides sucking my blood
Just to taste the real, just to feel you’re real

The post private island | a good look ep appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/private-island-good-look-ep/feed/ 0 12927
king | debut lp https://www.theearologydept.com/king-deput-lp/ https://www.theearologydept.com/king-deput-lp/#respond Wed, 10 Sep 2014 12:54:24 +0000 http://www.theearologydept.com/?p=11788   Los Angeles-based neo-soul spouting trio King is Paris Strother, Amber Strother and Anita Bias. Their music comes from a place where every nerve and nuance is familiar with. Four years ago Mr. Roger Nelson was spellbound by their approach and take on music.     Yesterday the ladies King were featured on NPR. And …

The post king | debut lp appeared first on The Earology Dept..

]]>

 
Los Angeles-based neo-soul spouting trio King is Paris Strother, Amber Strother and Anita Bias. Their music comes from a place where every nerve and nuance is familiar with. Four years ago Mr. Roger Nelson was spellbound by their approach and take on music.
 

 
Yesterday the ladies King were featured on NPR. And today, it’s your turn to listen, fall head over heels and spread the word. Stat tuned for their full-length debut, We Are KING is dropping soon. Peace.

 

The post king | debut lp appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/king-deput-lp/feed/ 0 11788
caribou | our love https://www.theearologydept.com/caribou-love/ https://www.theearologydept.com/caribou-love/#respond Wed, 20 Aug 2014 19:07:37 +0000 http://www.theearologydept.com/?p=11764   Caribou releases the title track from his forthcoming album ‘Our Love,’ courtesy of Merge / City Slang. The title-track is out now and is available free with your digital Pre-order of the new album Our Love via iTunes. Drop date is October 07, 2014.  

The post caribou | our love appeared first on The Earology Dept..

]]>

 
Caribou releases the title track from his forthcoming album ‘Our Love,’ courtesy of Merge / City Slang.

The title-track is out now and is available free with your digital Pre-order of the new album Our Love via iTunes.

Drop date is October 07, 2014.
 

The post caribou | our love appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/caribou-love/feed/ 0 11764
the mercy beat | an act of mercy | sweet | video https://www.theearologydept.com/mercy-beat-act-mercy-sweet-video/ https://www.theearologydept.com/mercy-beat-act-mercy-sweet-video/#respond Sun, 25 May 2014 12:42:31 +0000 http://www.theearologydept.com/?p=11686 The Mercy Beat hits low. They know what we like and they use it against us. Here they offer their track, “Sweet,” in a capsule of cinematic eye-candy. The video is nice but I reckon so is the rest of the aural anatomy that is sure to follow. I hereby dub TMB Seductive and majorly …

The post the mercy beat | an act of mercy | sweet | video appeared first on The Earology Dept..

]]>

The Mercy Beat hits low. They know what we like and they use it against us. Here they offer their track, “Sweet,” in a capsule of cinematic eye-candy. The video is nice but I reckon so is the rest of the aural anatomy that is sure to follow. I hereby dub TMB Seductive and majorly Rockeous. The last word I made up, totally apt. More please!

Also, check out the band’s latest “An Act Of Mercy“. ← This song is irresistible and I am sure your feet will agree. No word yet on a forthcoming EP, LP or whatever. But keep it right here and I’ll keep ya’ posted. Peace.

The post the mercy beat | an act of mercy | sweet | video appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/mercy-beat-act-mercy-sweet-video/feed/ 0 11686
no // leave the door wide open https://www.theearologydept.com/leave-door-wide-open/ https://www.theearologydept.com/leave-door-wide-open/#respond Wed, 12 Feb 2014 19:58:57 +0000 http://www.theearologydept.com/?p=11263   The LA-based six-piece NO are gearing up for incredible year, check out the first song and lead single, Leave The Door Wide Open, from the band’s full-length debut El Prado. Also, they will be performing at this year’s Noise Pop in beautiful San Francisco on February 28th, heading on down to Austin, TX for …

The post no // leave the door wide open appeared first on The Earology Dept..

]]>

 
The LA-based six-piece NO are gearing up for incredible year, check out the first song and lead single, Leave The Door Wide Open, from the band’s full-length debut El Prado. Also, they will be performing at this year’s Noise Pop in beautiful San Francisco on February 28th, heading on down to Austin, TX for SXSW next month, after which the band is part of this year’s Sasquatch incredible line-up. Lastly, the guys will be a part of the Arts & Crafts’ North American label tour featuring The Darcys and Reuben And The Dark, which kicks off in their hometown on March 8th at The Troubadour and commences in Canada on March 25 in Toronto. Peace.
 

 
NO, El Prado, Tracklist:
 
01. Leave The Door Wide Open
02. Stay With Me
03. What’s Your Name
04. Monday
05. So Scared
06. There’s a Glow
07. Interlude
08. Another Life
09. The Long Haul
10. North Star
11. Last Chance
12. Hold On
13. Go Outside
 
TOUR DATES:
 
Mar 08 Los Angeles, CA | Troubadour
Mar 09 Scottsdale, AZ | The Western
Mar 12 Austin, TX | SXSW
Mar 15 Houston, TX | Fitzgerald’s
Mar 18 Atlanta, GA | Masquerade – Purgatory
Mar 19 Chapel Hill, NC | Cat’s Cradle
Mar 20 Washington, DC | DC9
Mar 21 Brooklyn, NY | Cameo Gallery
Mar 22 NYC, NY | Mercury Lounge
Mar 23 Boston, MA | Middle East Upstairs
Mar 25 Toronto, ON | Lee’s Palace
Mar 26 London, ON | Call The Office
Mar 27 Chicago, IL | Schubas
Mar 28 Minneapolis, MN | 7th Street Entry
Mar 29 Winnipeg, MB | Union Hall
Apr 01 Edmonton, AB | The Artery
Apr 02 Calgary, AB | The Gateway @ SAIT
Apr 03 Kelowna, BC | Habitat
Apr 04 Seattle, WA | Barboza
Apr 05 Vancouver, BC | Biltmore
Apr 06 Portland, OR | Mississippi Studios

The post no // leave the door wide open appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/leave-door-wide-open/feed/ 0 11263
warpaint // warpaint https://www.theearologydept.com/warpaint-warpaint/ https://www.theearologydept.com/warpaint-warpaint/#respond Fri, 15 Nov 2013 23:57:09 +0000 http://www.theearologydept.com/?p=10577   The band Warpaint is a Los Angeles based quartet comprised of Emily Kokal (vocals/guitar), Jenny Lee Lindberg (bass/vocals), Theresa Wayman (guitar/vocals), and Stella Mozgawa (drums). To say that this follow-up is “highly anticipated” is an understatement considering the reception that their debut received when it was released at the end of 2010. Warpaint was …

The post warpaint // warpaint appeared first on The Earology Dept..

]]>

 
The band Warpaint is a Los Angeles based quartet comprised of Emily Kokal (vocals/guitar), Jenny Lee Lindberg (bass/vocals), Theresa Wayman (guitar/vocals), and Stella Mozgawa (drums). To say that this follow-up is “highly anticipated” is an understatement considering the reception that their debut received when it was released at the end of 2010.

Warpaint was recorded and mixed by Flood, aside from two songs that were mixed by Nigel Godrich (Radiohead, Atoms For Peace). The album was conceived after some truly inspirational writing and recording sessions that took place in The Joshua Tree late last year. The band was joined there by visionary director Chris Cunningham, who has partnered with them for many of the album visuals including the cover. He spent two years filming and photographing the band as they made new music.

Warpaint is a well-oiled machine. They weave intricate guitar lines, hypnotic vocals and driving post punk rhythms into gorgeous, sprawling songs that skirt the line between psychedelia and intimacy. Both live and on record, Warpaint sound like they’re channeling something truly otherworldly, and mystical. They are also a band that truly enjoys playing together. Emily and Theresa have been friends since they were kids, and the bond that the four of them have is truly special. Peace.
 

 
Track Listing
 
1. Intro
2. Keep It Healthy
3. Love Is To Die
4. Hi
5. Biggy
6. Teese
7. Disco//very
8. Go In
9. Feeling Alright
10. CC
11. Drive
12. Son

The post warpaint // warpaint appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/warpaint-warpaint/feed/ 0 10577
taiwo heard // frontier to eternity ep (our sunday best) https://www.theearologydept.com/taiwo-heard-frontier-to-eternity-ep-our-sunday-best/ https://www.theearologydept.com/taiwo-heard-frontier-to-eternity-ep-our-sunday-best/#comments Sun, 21 Jul 2013 13:28:50 +0000 http://www.theearologydept.com/?p=10116   taiwo heard  //  frontier to eternity ep   Taiwo Heard may have been born and raised in Washington, D.C. but his musical influences are anything but local. So, if you’re in the mood for rock-grunge-ish meets electronica then listen as you glisten to Taiwo Heard’s debut Frontier To Eternity EP. The end result is …

The post taiwo heard // frontier to eternity ep (our sunday best) appeared first on The Earology Dept..

]]>
Ground control to Major Tom we have Taiwo Heard. Copy?

 

taiwo heard  //  frontier to eternity ep

 

Taiwo Heard may have been born and raised in Washington, D.C. but his musical influences are anything but local. So, if you’re in the mood for rock-grunge-ish meets electronica then listen as you glisten to Taiwo Heard’s debut Frontier To Eternity EP. The end result is a mix bag of  musical influences, i.e. classic rock, R&B, Soul, etc. Mr. Heard music sounds homogenous, but only partly so, it lacks the cloying and redundancy commercialism. Yet, the music occupies the realm of the familiar and the innovative, simultaneously. Basically, it’s fresh like the heliosphere blowing through the young lungs of a burgeoning solar system.

In 2005 Heard graduated from the impeccable Berklee College of Music, shortly thereafter the move was made to Los Angeles. Long story short, Taiwo Heard joined forces with long-time friend Eddie Robinson and formed the electro-pop band, Swivel. In addition to performing and providing the vocals, Mr. Heard wrote and produced the band’s debut album, Landing. However, this union didn’t last long, the group disbanded a few years later.

But the damage had already been done, through his previous experiences Taiwo Heard gained a ton of exposure via the blogosphere, the music press in general, and a legion of fans the world over. If you were fortunate enough to catch Swivel at any of the countless domestic and international festival tour dates, then count yourself lucky indeed.

Right now you can get a FREE DOWNLOAD of the Frontier To Eternity EP via Noisetrade, although it would only be prudent and just plain nice to drop a little sumpin’ sumpin’ in the kitty. Peace.

The post taiwo heard // frontier to eternity ep (our sunday best) appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/taiwo-heard-frontier-to-eternity-ep-our-sunday-best/feed/ 1 10116
anna lunoe // anna lunoe mix https://www.theearologydept.com/anna-lunoe-anna-lunoe-mix/ https://www.theearologydept.com/anna-lunoe-anna-lunoe-mix/#respond Sat, 13 Jul 2013 02:30:48 +0000 http://www.theearologydept.com/?p=9983 anna lunoe // anna lunoe mix Honestly I can’t think of a better way to kick off another fine Summer weekend than with a bangin’ new mellifluous dance music mix from the incomparable Anna Lunoe.  This particular mix first aired on Evolution/Dim Mak Radio on the 4th of July and, as expected, features Anna’s signature style …

The post anna lunoe // anna lunoe mix appeared first on The Earology Dept..

]]>

anna lunoe // anna lunoe mix

Honestly I can’t think of a better way to kick off another fine Summer weekend than with a bangin’ new mellifluous dance music mix from the incomparable Anna Lunoe.  This particular mix first aired on Evolution/Dim Mak Radio on the 4th of July and, as expected, features Anna’s signature style of dead on bulls-eye, high quality, proper like House music, sure to get any and all bottoms shakin’ this weekend. Peace.

The post anna lunoe // anna lunoe mix appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/anna-lunoe-anna-lunoe-mix/feed/ 0 9983