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 ); } } Daniel Blumberg – The Earology Dept. https://www.theearologydept.com Where the food sounds good, and the music is pretty tasty too. Sat, 14 Apr 2012 05:00:00 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.20 50391680 Yuck // Chew https://www.theearologydept.com/yuck-chew/ https://www.theearologydept.com/yuck-chew/#respond Sat, 14 Apr 2012 05:00:00 +0000 http://mittenmouthmusic.wordpress.com/?p=5132 Yuck. You know what this band can do ’cause their reputation precedes them. The new song, “Chew” is everything you’d expect it to be. It rocks. If you’re a fan and are heading to Coachella check ’em out they’ll be there just for you. Peace. If you got a hankering to see the band live …

The post Yuck // Chew appeared first on The Earology Dept..

]]>

Yuck. You know what this band can do ’cause their reputation precedes them. The new song, “Chew” is everything you’d expect it to be. It rocks. If you’re a fan and are heading to Coachella check ’em out they’ll be there just for you. Peace.


If you got a hankering to see the band live stateside here are the remaining mini-tour dates:

April

13th: Coachella, Indio CA (SOLD OUT)

15th: The Independent, San Francisco CA

17th: The Casbah, San Diego CA

18th: Constellation Room (with La Sera), Santa Ana CA

19th: Pappy & Harriet’s (with Girls), Pioneertown CA

20th: Coachella, Indio CA (SOLD OUT)

The post Yuck // Chew appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/yuck-chew/feed/ 0 5132
Yuck – Soothe Me & Get Away https://www.theearologydept.com/yuck-soothe-me/ https://www.theearologydept.com/yuck-soothe-me/#respond Sat, 01 Oct 2011 19:59:48 +0000 http://mittenmouthmusic.wordpress.com/?p=936 The month of October brings many thing: falling temperatures, leaves vacating tress, Halloween, and this year the double-disc release of Yuck‘s self-titled debut. The single “Soothe Me” is the 2nd single release thus far, you many have already heard “Cousin Corona”, but if you haven’t go to their label’s site at Fat Possum Records and …

The post Yuck – Soothe Me & Get Away appeared first on The Earology Dept..

]]>

The month of October brings many thing: falling temperatures, leaves vacating tress, Halloween, and this year the double-disc release of Yuck‘s self-titled debut. The single “Soothe Me” is the 2nd single release thus far, you many have already heard “Cousin Corona”, but if you haven’t go to their label’s site at Fat Possum Records and check it out. The album drops October 11th, so make sure to mark it on your calendar. Listen below, I’m out. Peace.



Yuck - Get Away from Yuck on Vimeo.

The post Yuck – Soothe Me & Get Away appeared first on The Earology Dept..

]]>
https://www.theearologydept.com/yuck-soothe-me/feed/ 0 936