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 ); } } Tree – The Earology Dept. https://www.theearologydept.com Where the food sounds good, and the music is pretty tasty too. Wed, 08 Jul 2015 23:49:14 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.20 50391680 tree // karma police (official video) https://www.theearologydept.com/tree-karma-police-official-video/ https://www.theearologydept.com/tree-karma-police-official-video/#respond Sat, 17 Aug 2013 04:01:11 +0000 http://www.theearologydept.com/?p=10322   tree  //  karma police (official video)   The way out west artist Tree (Oliver Nickell) recently co-directed the video to his astounding Radiohead Karma Police cover. And although the video works well and a visual vehicle it is his re-imagining of the song that sends shivers all over my earlobe. So far, Tree’s Karma …

The post tree // karma police (official video) appeared first on The Earology Dept..

]]>
IMG_2786
 

tree  //  karma police (official video)

 
The way out west artist Tree (Oliver Nickell) recently co-directed the video to his astounding Radiohead Karma Police cover. And although the video works well and a visual vehicle it is his re-imagining of the song that sends shivers all over my earlobe. So far, Tree’s Karma Police is my favorite cover of 2013!

Check out the debut Demons EP is available on vinyl via Apollo and R&S Records. Peace.
 

The post tree // karma police (official video) appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/tree-karma-police-official-video/feed/ 0 10322
tree // demons ep https://www.theearologydept.com/tree-demons-ep/ https://www.theearologydept.com/tree-demons-ep/#respond Thu, 18 Jul 2013 02:56:43 +0000 http://www.theearologydept.com/?p=10060     tree // demons ep   Santa Cruz artist Tree aka Oliver Nickel is finally getting the recognition, and exposure, he so rightfully deserves with the release of his Demons EP via Apollo Records. It is also good to see the rest of the world finally catching on to what Ive known for quite …

The post tree // demons ep appeared first on The Earology Dept..

]]>
Tree_Drew Grasso
 
  tree // demons ep

 
Santa Cruz artist Tree aka Oliver Nickel is finally getting the recognition, and exposure, he so rightfully deserves with the release of his Demons EP via Apollo Records. It is also good to see the rest of the world finally catching on to what Ive known for quite some time: Oliver Tree Nickel is an adept musical alchemist. Mr. Nickel commingles the sonorous ideas in his head with the innovative beats and rhythms of his heart. 

The Demons EP contains only three tracks, but in this case it is the quality and not so much the quantity. My favorite is Tree’s rendition of Radiohead’s Karma Police. Tree’s version delivers beautifully whilst crawling on it’s bruised hands and bleeding knees, it contains a dour and fragile humanness only hinted at in the original version . This song begs with the mouth of a slightly off-center genius, and the pure unmolested emotions unspooled here replace a former Pop darling of a song with something more raw and stunningly menacing. This is avant garde Pop music at it’s finest carving out  a place all it’s own. Peace.

 

 

Tree’s debut EP, Demons, will be released on August 13, 2013 through Apollo Records.

Track List:

1. Demons

2. Karma Police

3. Rabbit Hole

 

Force Field PR / 1022 Milwauk

The post tree // demons ep appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/tree-demons-ep/feed/ 0 10060
Tree // Universal (Ft. Ariel Thiermann) https://www.theearologydept.com/tree-universal-ft-ariel-thiermann/ https://www.theearologydept.com/tree-universal-ft-ariel-thiermann/#comments Thu, 09 Feb 2012 00:48:27 +0000 http://mittenmouthmusic.wordpress.com/?p=4061 If you were to catch a shooting star and tap into its little black-box, and were able to decode all the energy inside. Well, the energy may sound something like the new “Universal” track by none other than San Francisco, California-based musician/producer Tree, bka Oliver Nickell. I am feeling the positive vibes, which are now …

The post Tree // Universal (Ft. Ariel Thiermann) appeared first on The Earology Dept..

]]>

If you were to catch a shooting star and tap into its little black-box, and were able to decode all the energy inside. Well, the energy may sound something like the new “Universal” track by none other than San Francisco, California-based musician/producer Tree, bka Oliver Nickell. I am feeling the positive vibes, which are now flowing freely from my speakers, and into my cerebellum cortex. My brain is now so electrically happy it’s chanting Ohm into the labyrinth of gray coils which comprise my think organ. And before I fail to mention: Ariel Thiermann, your star-bright voice can be the call to Tree’s musical response any ole’ time. Peace.

“Universal” from the forthcoming Spring release Splitting Branches

The post Tree // Universal (Ft. Ariel Thiermann) appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/tree-universal-ft-ariel-thiermann/feed/ 1 4061
Tree & Shelf Nunny – This Is Separation https://www.theearologydept.com/tree-shelf-nunny-this-is-separation/ https://www.theearologydept.com/tree-shelf-nunny-this-is-separation/#respond Thu, 05 Jan 2012 22:35:28 +0000 http://mittenmouthmusic.wordpress.com/?p=3136 Is there anything worse than romantic separation? Well, maybe financial ruin, but that’s another blog, not this one. Humans, we take it personal when a good thing comes to a close. Heck, at times we even hate when a bad thing comes to an end. We’re weird like that. What can you do? With the …

The post Tree & Shelf Nunny – This Is Separation appeared first on The Earology Dept..

]]>
Is there anything worse than romantic separation? Well, maybe financial ruin, but that’s another blog, not this one. Humans, we take it personal when a good thing comes to a close. Heck, at times we even hate when a bad thing comes to an end. We’re weird like that. What can you do? With the song “This Is Separation,” the San Fran cool folks known as Tree & Shelf Nunny have captured the lovelorn emotion in verse to a T; and its pathetically beautiful. The song puts on a pretty convincing display: it pouts, it is full of lament and sadness, and it rides a forlorn bouncy beat indicating the up and down emotion of the newly lonely. I need a beer now, maybe several. Peace.

The post Tree & Shelf Nunny – This Is Separation appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/tree-shelf-nunny-this-is-separation/feed/ 0 3136
Tree – People (Ft. Shelf Nunny & Lena Kuhn) https://www.theearologydept.com/tree-people-ft-shelf-nunny-lena-kuhn/ https://www.theearologydept.com/tree-people-ft-shelf-nunny-lena-kuhn/#respond Tue, 29 Nov 2011 21:45:21 +0000 http://mittenmouthmusic.wordpress.com/?p=2122 The first struggling notes get your attention. These notes soon sprout into flickering electric bits fleshing out a beautifully morbid soundscape. Not to fret though, its all towards a delicately attractive end. The song “People” is an ode with roots encircling all of us; our own mortality is called front and center and it shines. …

The post Tree – People (Ft. Shelf Nunny & Lena Kuhn) appeared first on The Earology Dept..

]]>
The first struggling notes get your attention. These notes soon sprout into flickering electric bits fleshing out a beautifully morbid soundscape. Not to fret though, its all towards a delicately attractive end. The song “People” is an ode with roots encircling all of us; our own mortality is called front and center and it shines. The San Francisco artist Oliver  Nickell aka Tree has enlisted the services of Shelf Nunny and Lena Kuhn on this wonderfully mundane track. Give it a listen and get in touch with your inner Tim Burton. Peace.

The post Tree – People (Ft. Shelf Nunny & Lena Kuhn) appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/tree-people-ft-shelf-nunny-lena-kuhn/feed/ 0 2122