diff --git a/wp-content/plugins/flash-video-player/default_video_player.gif b/wp-content/plugins/flash-video-player/default_video_player.gif deleted file mode 100644 index 921e3e159488c6252932b3b3977d6920c4cd5537..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/default_video_player.gif and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/expressinstall.swf b/wp-content/plugins/flash-video-player/expressinstall.swf deleted file mode 100644 index 613d69b721259a70ef98dcd2bc6e0258a4e3c10c..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/expressinstall.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/flash-video-player.php b/wp-content/plugins/flash-video-player/flash-video-player.php deleted file mode 100644 index 1b80b8962c8d77e66b13e1340b21667356105412..0000000000000000000000000000000000000000 --- a/wp-content/plugins/flash-video-player/flash-video-player.php +++ /dev/null @@ -1,391 +0,0 @@ -<?php -/* -Plugin Name: Flash Video Player -Version: 5.0.4 -Plugin URI: http://www.mac-dev.net -Description: Simplifies the process of adding video to a WordPress blog. Powered by Jeroen Wijering's FLV Media Player and SWFObject by Geoff Stearns. -Author: Joshua Eldridge -Author URI: http://www.mac-dev.net - -Flash Video Plugin for Wordpress Copyright 2010 Joshua Eldridge - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -any later version. - -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 - -1) Includes Jeroen Wijering's FLV Media Player (Creative Commons "BY-NC-SA" License) v5.1 - Website: http://www.jeroenwijering.com/?item=JW_FLV_Player - License: http://creativecommons.org/licenses/by-nc-sa/2.0/ -2) Includes Geoff Stearns' SWFObject Javascript Library (MIT License) v2.1 - Website: http://code.google.com/p/swfobject/ - License: http://www.opensource.org/licenses/mit-license.php -*/ - -// error_reporting(E_ALL); - -// Global Options -$videoid = 0; -$site_url = get_option('siteurl'); -$saved_options = get_option('FlashVideoPlayerPlugin_PlayerOptions'); -$plugin_specific = $saved_options['Plugin-Specific']; - -if(isset($saved_options['Plugin-Specific'])) { - unset($saved_options['Plugin-Specific']); -} - -// Widget Functions Start -function FlashVideoPlayerPlugin_widgetregister(){ - register_sidebar_widget('Flash Video Player 5', 'FlashVideoPlayerPlugin_widget'); - register_widget_control('Flash Video Player 5', 'FlashVideoPlayerPlugin_control'); - } - -function FlashVideoPlayerPlugin_widget($a) { - $widget_options = get_option('FlashVideoPlayerPlugin_WidgetOptions'); - echo $a['before_widget']; - echo $a['before_title'] . $widget_options['FlashVideoPlayerPlugin_WidgetOptions_title'] . $a['after_title']; - echo FlashVideoPlayerPlugin_parsecontent($widget_options['FlashVideoPlayerPlugin_WidgetOptions_tag']); - echo $a['after_widget']; - } - -function FlashVideoPlayerPlugin_control() { - if(isset($_POST['FlashVideoPlayerPlugin_WidgetSubmit'])) { - update_option('FlashVideoPlayerPlugin_WidgetOptions', array('FlashVideoPlayerPlugin_WidgetOptions_title'=>$_POST['FlashVideoPlayerPlugin_WidgetOptions_title'], 'FlashVideoPlayerPlugin_WidgetOptions_tag'=>$_POST['FlashVideoPlayerPlugin_WidgetOptions_tag'])); - } - $widget_options = get_option('FlashVideoPlayerPlugin_WidgetOptions'); - echo '<p><label>Title: <input name="FlashVideoPlayerPlugin_WidgetOptions_title" type="text" value="' . $widget_options['FlashVideoPlayerPlugin_WidgetOptions_title'] . '" /></label></p>'; - echo '<p><label>Tag: <textarea rows="5" name="FlashVideoPlayerPlugin_WidgetOptions_tag">' . $widget_options['FlashVideoPlayerPlugin_WidgetOptions_tag'] . '</textarea></label></p>'; - echo '<input type="hidden" name="FlashVideoPlayerPlugin_WidgetSubmit" value="1" />'; -} - -// Plugin Functions Start -function FlashVideoPlayerPlugin_parsecontent($content) { - $content = preg_replace_callback("/\[flashvideo ([^]]*)\/\]/i", "FlashVideoPlayerPlugin_renderplayer", $content); - return $content; -} - -function FlashVideoPlayerPlugin_adminmenu() { - add_options_page('Flash Video', 'Flash Video', '8', 'flash-video-player.php', 'FlashVideoPlayerPlugin_optionspage'); -} - -function FlashVideoPlayerPlugin_head() { - global $site_url, $plugin_specific; - switch($plugin_specific['swfobject']['v']) { - case 'local': - echo '<script type="text/javascript" src="' . $site_url . '/wp-content/plugins/flash-video-player/swfobject.js"></script>' . "\n"; - break; - case 'google': - echo '<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>' . "\n"; - break; - case 'none': - break; - } -} - -function FlashVideoPlayerPlugin_footer() { - global $plugin_specific; - if($plugin_specific['ltasurl']['v'] != '') { - echo '<script language="JavaScript" src="' . $plugin_specific['ltasurl']['v'] . '"></script>'; - } -} - -// Initialization -function FlashVideoPlayerPlugin_activate() { - // update_option will add if it doesn't exist - add_option('FlashVideoPlayerPlugin_WidgetOptions'); - update_option('FlashVideoPlayerPlugin_PlayerOptions', loadDefaultOptions()); -} - -function FlashVideoPlayerPlugin_deactivate() { - delete_option('FlashVideoPlayerPlugin_PlayerOptions'); - delete_option('FlashVideoPlayerPlugin_WidgetOptions'); -} - -function FlashVideoPlayerPlugin_renderplayer($tag_string) { - global $site_url, $videoid, $saved_options; - $rss_output = ''; - $output = ''; - $flashvars = array(); - // First thing we need to do is to clean up the tag options: - // Clean up WordPress converted quotes - $tag_string = str_replace(array('”','″'), '', $tag_string[1]); - // Match key value pairs - preg_match_all('/([.\w]*)=(.*?) /i', $tag_string, $pairs); - // Create an associative array with the matched pairs - foreach ( (array) $pairs[1] as $key => $value ) { - // Strip out legacy quotes and load inline options - $inline_options[$value] = trim(str_replace('"', '', $pairs[2][$key])); - } - // Make sure the only required parameter has been provided - if ( !array_key_exists('filename', $inline_options) && !array_key_exists('file', $inline_options) ) { - return '<div style="background-color:#ff9;padding:10px;"><p>Error: Required parameter "file" is missing!</p></div>'; - exit; - } - // Deprecate filename in favor of file. - if(array_key_exists('filename', $inline_options)) { - $inline_options['file'] = $inline_options['filename']; - unset($inline_options['filename']); - } - // Override inline parameters - if ( array_key_exists('width', $inline_options) ) { - $saved_options['Video Size']['width']['v'] = $inline_options['width']; - } - if ( array_key_exists('height', $inline_options) ) { - $saved_options['Video Size']['height']['v'] = $inline_options['height']; - } - if ( array_key_exists('image', $inline_options) ) { - // Respect remote images - if(strpos($inline_options['image'], 'http://') === false) { - $inline_options['image'] = $site_url . '/' . $inline_options['image']; - } - // If an image is found, embed it in the RSS feed. - $rss_output .= '<img src="' . $saved_options['File Properties']['image']['v'] . '" />'; - } else { - if ($saved_options['File Properties']['image']['v'] == '') { - // Place the default image, since there isn't one set. - $rss_output .= '<img src="' . $site_url . '/' . 'wp-content/plugins/flash-video-player/default_video_player.gif" />'; - } else { - $rss_output .= '<img src="' . $saved_options['File Properties']['image']['v'] . '" />'; - } - } - - if(strpos($inline_options['file'], 'http://') !== false || isset($inline_options['streamer']) || strpos($inline_options['file'], 'rtmp://') !== false || strpos($inline_options['file'], 'https://') !== false) { - // This is a remote file, so leave it alone but clean it up a little - $find = array('#', '$', '%', '&', '+', ',', '-', '?', '_', '&'); - $replace = array('#', '$', '%', '&', '+', ',', '-', '?', '_', '&'); - $inline_options['file'] = str_replace($find, $replace, $inline_options['file']); - } else { - $inline_options['file'] = $site_url . '/' . $inline_options['file']; - } - // Make RTMP Streams backward compatible - if(strpos($inline_options['file'], 'rtmp://') !== false && strpos($inline_options['file'], '&id=') !== false) { - list($inline_options['streamer'], $inline_options['file']) = split('&id=', $inline_options['file']); - $inline_options['type'] = 'video'; - } - - $output .= "\n" . '<!-- Start Flash Video Player Plugin -->'; - - $content_tag = "\n" . '<div id="video' . $videoid . '" class="flashvideo"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this content.</div>'; - - $output = $content_tag; - - $output .= "\n" . '<script type="text/javascript">'; - foreach( (array) $saved_options as $k=>$v) { - foreach ( (array) $v as $key=>$value ) { - // Allow for inline override of all parameters - if ( array_key_exists($key, $inline_options) ) { - $value['v'] = $inline_options[$key]; - } - if ( $value['v'] != '' && $value['v'] != 'undefined') { - // Replace underscores with periods, this is a fix for the new variable names introduced in the 5.1 player. - if(strpos($key, '_') !== false) { - $key = str_replace('_', '.', $key); - } - // Check to see if we're processing a "skin". If so, make the filename absolute using the - // fully qualified path. This will ensure the player displays correctly on category pages as well. - if($key == 'skin') { - //if($value['v'] != 'undefined') { - $flashvars[] = "\n\t'" . $key . "' : '" . $site_url . "/wp-content/plugins/flash-video-player/skins/" . $value['v'] . '/' . trim($value['v']) . ".swf'"; - //} - } else { - $flashvars[] = "\n\t'" . $key . "' : '" . trim($value['v']) . "'"; - } - } - } - } - $flashvars = implode(",", $flashvars); - $output .= "\n" . "var params = { 'allowfullscreen': 'true', 'allowscriptaccess': 'always', 'wmode': 'transparent' };"; - $output .= "\n" . "var attributes = { 'id': 'video" . $videoid . "', 'name': 'video" . $videoid . "'};"; - $output .= "\n" . 'var flashvars = {'; - $output .= $flashvars; - $output .= "\n" . ' };'; - $output .= "\n" . 'swfobject.embedSWF("' . $site_url .'/wp-content/plugins/flash-video-player/mediaplayer/player.swf", "video' . $videoid . '", "' . $saved_options['Video Size']['width']['v'] . '", "' . $saved_options['Video Size']['height']['v'] . '", "9.0.0","' . $site_url . '/wp-content/plugins/flash-video-player/mediaplayer/expressinstall.swf", flashvars, params, attributes);'; - $output .= "\n" . '</script>'; - $output .= "\n" . '<!-- End Flash Video Player Plugin -->' . "\n"; - $videoid++; - if(is_feed()) { - return $rss_output; - } else { - return $output; - } -} - -function FlashVideoPlayerPlugin_optionspage() { - global $site_url, $saved_options, $plugin_specific; - $saved_options['Plugin-Specific'] = $plugin_specific; - $message = ''; - // Process form submission - if ($_POST) { - foreach($saved_options as $h=>$o) { - foreach( (array) $o as $key=>$value) { - // Handle Checkboxes that don't send a value in the POST - if($value['t'] == 'cb' && !isset($_POST[$key])) { - $saved_options[$h][$key]['v'] = 'false'; - } - if($value['t'] == 'cb' && isset($_POST[$key])) { - $saved_options[$h][$key]['v'] = 'true'; - } - // Handle all other changed values - if(isset($_POST[$key]) && $value['t'] != 'cb') { - $saved_options[$h][$key]['v'] = $_POST[$key]; - } - } - } - update_option('FlashVideoPlayerPlugin_PlayerOptions', $saved_options); - $message = '<div class="updated"><p><strong>Options saved.</strong></p></div>'; - } - //$swfobject = get_option('FlashVideoPlayerPlugin_SWFObject'); - echo '<div class="wrap">'; - echo '<div id="icon-options-general" class="icon32"><br /></div>'; - echo '<h2>Flash Video Options</h2>'; - echo $message; - echo '<form method="post" action="options-general.php?page=flash-video-player.php">'; - echo "<p>Welcome to the flash video player plugin options menu! Here you can set all (or none) of the available player variables to default values for your website. If you have a question what valid values for the variables are, please consult the <a href='http://mac-dev.net/blog/flash-video-player-plugin-customization/'>online documentation</a>. If your question isn't answered there or in the <a href='http://mac-dev.net/blog/frequently-asked-questions/'>F.A.Q.</a>, please ask in the <a href='http://www.mac-dev.net/blog/forum'>forum</a>.</p>"; - // Locate the skins directory - $skins_dir = str_replace('wp-admin', 'wp-content', dirname(__FILE__)) . '/skins/'; - $skins = array(); - // Poll the directories listed in the skins folder to generate the dropdown list with valid skin files - chdir($skins_dir); - if ($handle = opendir($skins_dir)) { - while (false !== ($file = readdir($handle))) { - if ($file != "." && $file != "..") { - if(is_dir($file)) { - $skins[] = $file; - } - } - } - closedir($handle); - } - // Add the default value onto the beginning of the skins array - array_unshift($skins, 'undefined'); - $saved_options['Layout']['skin']['op'] = $skins; - foreach( (array) $saved_options as $key=>$value) { - echo '<h3>' . $key . '</h3>' . "\n"; - echo '<table class="form-table">' . "\n"; - foreach( (array) $value as $k=>$v) { - // Adding Support for "Do Not Display" - if($v['t'] != 'dnd') { - echo '<tr><th scope="row">' . $v['dn'] . '</th><td>' . "\n"; - switch ($v['t']) { - case 'tx': - $size = ''; - if(isset($v['sz'])) { - $size = ' size="' . $v['sz'] . '"'; - } - echo '<input type="text" name="' . $k . '" value="' . $v['v'] . '"' . $size . ' />'; - break; - case 'dd': - echo '<select name="' . $k . '">'; - foreach( (array) $v['op'] as $o) { - $selected = ''; - if($o == $v['v']) { - $selected = ' selected'; - } - echo '<option value="' . $o . '"' . $selected . '>' . ucfirst($o) . '</option>'; - } - echo '</select>'; - break; - case 'cb': - echo '<input type="checkbox" class="check" name="' . $k . '" '; - if($v['v'] == 'true') { - echo 'checked="checked"'; - } - echo ' />'; - break; - } - echo '</td></tr>' . "\n"; - } - } - echo '</table>' . "\n"; - } - - echo '<p class="submit"><input class="button-primary" type="submit" method="post" value="Update Options"></p>'; - echo '</form>'; - echo '</div>'; -} - -function loadDefaultOptions() { - $options = array ( - 'File Properties' => array ( - 'author' => array ('dn' => 'Author', 't' => 'dnd', 'v' => ''), - 'date' => array ('dn' => 'Publish Date', 't' => 'dnd', 'v' => ''), - 'description' => array ('dn' => 'Description', 't' => 'dnd', 'v' => ''), - 'duration' => array ('dn' => 'Duration', 't' => 'dnd', 'v' => ''), - 'file' => array ('dn' => 'File Name', 't' => 'dnd', 'v' => ''), - 'image' => array ('dn' => 'Preview Image', 't' => 'tx', 'v' => ''), - 'start' => array ('dn' => 'Start', 't' => 'dnd', 'v' => ''), - 'streamer' => array ('dn' => 'Streamer', 't' => 'tx', 'v' => ''), - 'tags' => array ('dn' => 'Tags', 't' => 'dnd', 'v' => ''), - 'title' => array ('dn' => 'Title', 't' => 'dnd', 'v' => ''), - 'provider' => array ('dn' => 'Provider', 't' => 'dd', 'v' => 'undefined', 'op'=> array('undefined','video','sound','image','youtube','http','rtmp')) - ), - 'Video Size' => array ( - 'width' => array ('dn' => 'Player Width', 't' => 'tx', 'v' => '400', 'sz'=>'4'), - 'height' => array ('dn' => 'Player Height', 't' => 'tx', 'v' => '280', 'sz'=>'4') - ), - 'Colors' => array ( - 'backcolor' => array ('dn' => 'Background Color', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'frontcolor' => array ('dn' => 'Foreground Color', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'lightcolor' => array ('dn' => 'Light Color', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'screencolor' => array ('dn' => 'Screen Color', 't' => 'tx', 'v' => '', 'sz'=>'8') - ), - 'Layout' => array ( - 'controlbar' => array ('dn' => 'Controlbar', 't' => 'dd', 'v' => 'bottom', 'op'=> array('none', 'bottom', 'over')), - 'dock' => array ('dn' => 'Dock', 't' => 'cb', 'v' => 'false'), - 'icons' => array ('dn' => 'Play Icon', 't' => 'cb', 'v' => 'true'), - 'logo_file' => array ('dn' => 'Logo File (Licensed)', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'logo_link' => array ('dn' => 'Logo Link (Licensed)', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'logo_hide' => array ('dn' => 'Logo Hide (Licensed)', 't' => 'cb', 'v' => 'false'), - 'logo_position' => array ('dn' => 'Logo Position (Licensed)', 't' => 'dd', 'v' => 'bottom-left', 'op'=>array('bottom-left', 'bottom-right', 'top-left', 'top-right')), - 'playlist' => array ('dn' => 'Playlist', 't' => 'dd', 'v' => 'none', 'op'=> array('none','bottom', 'over', 'right')), - 'playlistsize' => array ('dn' => 'Playlist Size', 't' => 'tx', 'v' => '', 'sz'=>'4') - ), - 'Skin' => array ( - 'skin'=> array ('dn' => 'Skin', 't' => 'dd', 'v' => 'undefined', 'op'=> array('undefined', 'bright', 'overlay', 'simple', 'stylish', 'swift', 'thin')) - ), - 'Behavior' => array ( - 'autostart' => array ('dn' => 'Auto Start', 't' => 'cb', 'v' => 'false'), - 'bufferlength' => array ('dn' => 'Buffer Length', 't' => 'tx', 'v' => '1', 'sz'=>'1'), - // FUTURE - //'displaytitle' => array ('dn' => 'Display Title', 't' => 'cb', 'v' => 'false'), - 'item' => array ('dn' => 'Playlist Item', 't' => 'tx', 'v' => '0', 'sz'=>'1'), - 'mute' => array ('dn' => 'Mute Sounds', 't' => 'cb', 'v' => 'false'), - 'repeat' => array ('dn' => 'Repeat', 't' => 'dd', 'v' => 'none', 'op' => array('none', 'list', 'always', 'single')), - 'shuffle' => array ('dn' => 'Shuffle', 't' => 'cb', 'v' => 'false'), - 'smoothing' => array ('dn' => 'Smoothing', 't' => 'cb', 'v' => 'true'), - 'stretching' => array ('dn' => 'Stretching', 't' => 'dd', 'v' => 'uniform', 'op' => array('none', 'exactfit', 'uniform', 'fill')), - 'volume' => array ('dn' => 'Startup Volume', 't' => 'dd', 'v' => '90', 'op' => array('0', '10', '20', '30', '40', '50', '60', '70', '80', '90', '100')) - ), - 'External' => array ( - 'plugins' => array ('dn' => 'Plugins', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'ltas_cc' => array ('dn' =>'Long Tail Channel', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'config' => array ('dn' =>'Config XML', 't' => 'tx', 'v' => '', 'sz'=>'8'), - 'debug' => array ('dn' =>'Player Debug', 't' => 'dd', 'v' => 'undefined', 'op' => array('undefined','arthropod', 'console', 'trace')) - ), - 'Plugin-Specific' => array ( - 'swfobject' => array ('dn' => 'SWFObject Source', 't' => 'dd', 'v' => 'local', 'op' => array('local', 'google', 'none')) - ) - ); -return $options; -} - -// WordPress Plugin Hooks -register_activation_hook( __FILE__, 'FlashVideoPlayerPlugin_activate'); -register_deactivation_hook( __FILE__, 'FlashVideoPlayerPlugin_deactivate'); -add_action('admin_menu', 'FlashVideoPlayerPlugin_adminmenu'); -add_filter('the_content', 'FlashVideoPlayerPlugin_parsecontent'); -add_action('wp_head', 'FlashVideoPlayerPlugin_head'); -add_action('wp_footer', 'FlashVideoPlayerPlugin_footer'); - -// WordPress Widget Hook -add_action('plugins_loaded', 'FlashVideoPlayerPlugin_widgetregister'); -?> \ No newline at end of file diff --git a/wp-content/plugins/flash-video-player/mediaplayer/player.swf b/wp-content/plugins/flash-video-player/mediaplayer/player.swf deleted file mode 100644 index 292241910e6404160472ded4f4964a30445dddd7..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/mediaplayer/player.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/mediaplayer/yt.swf b/wp-content/plugins/flash-video-player/mediaplayer/yt.swf deleted file mode 100644 index 881ec8b35cf172980f68507e6f56ea6ec29ff0a7..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/mediaplayer/yt.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/readme.txt b/wp-content/plugins/flash-video-player/readme.txt deleted file mode 100644 index 2aaed26c84bfd2d30dbf44b4f98000537bec700b..0000000000000000000000000000000000000000 --- a/wp-content/plugins/flash-video-player/readme.txt +++ /dev/null @@ -1,43 +0,0 @@ -=== Flash Video Player === -Contributors: JoshuaE1974 -Donate link: http://www.mac-dev.net/ -Tags: flash, video, flv, mp3, player, wordpress, plugin, swf, media, mp4, rtmp, playlist, google, analytics, longtail, ads -Requires at least: 2.2.2 -Tested up to: 2.9.2 -Stable tag: 5.0.4 - -The flash video plugin for WordPress allows the addition of video (and other media) to a WordPress website using standards-compliant markup and the leading open source software (Jeroen Wijering's FLV Player and Geoff Stearns' SWFObject Javascript Library). A full options menu is available with post-level overrides for endless customization. Installation is quick and easy, and no additional setup/coding/php knowledge is required. This plugin is low footprint, creating no tables, and uninstalling cleanly. Version 5 provides full support for skinning the player, integration with Google Analytics, and the capability to display ads from LongTail Solutions. - -== Description == - -The flash video plugin for WordPress allows the addition of video (and other media) to a WordPress website using standards-compliant markup and the leading open source software (Jeroen Wijering's FLV Player and Geoff Stearns' SWFObject Javascript Library). A full options menu is available with post-level overrides for endless customization. Installation is quick and easy, and no additional setup/coding/php knowledge is required. This plugin is low footprint, creating no tables, and uninstalling cleanly. Version 5 provides full support for skinning the player, integration with Google Analytics, and the capability to display ads from LongTail Solutions. - -== Installation == - -1. Download and unzip the current version of the flash video plugin. -1. Transfer the entire flash-video-player directory to your `/wp-content/plugins/` directory -1. Activate the plugin through the 'Plugins' menu in WordPress -1. That's it! You're done. You can now enter the following into a post or page in WordPress to insert a video: [flashvideo file=video/video.flv /] - -== Frequently Asked Questions == - -= I have activated the plugin, but don't see the video player. What do I do? = - -Check and make sure that you have the appropriate hook in your template file for the header: `<?php wp_head(); ?>` - -= How can I get help? = - -* [Flash Player Download Site (Current Version)](http://mac-dev.net/blog/download-flash-video-player-plugin-for-wordpress/) -* [Flash Player Frequently Asked Questions (F.A.Q.)](http://mac-dev.net/blog/frequently-asked-questions/) -* [Flash Player Complete Options](http://mac-dev.net/blog/flash-video-player-plugin-customization/) -* [Flash Player Custom Color Examples](http://mac-dev.net/blog/flash-video-player-plugin-custom-color-examples/) -* [Flash Player Support Forum](http://mac-dev.net/blog/forum/) - -== Screenshots == - -1. Administrative Options Panel -1. Player Embedded in Post with Custom Poster Frame -1. Floating Controls -1. Custom Watermark Logo -1. Custom Player Colors -1. LongTail Ads diff --git a/wp-content/plugins/flash-video-player/screenshot-1.png b/wp-content/plugins/flash-video-player/screenshot-1.png deleted file mode 100644 index cd200b209f2f58ffc824eb44ff2394f492ebc2d6..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/screenshot-1.png and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/screenshot-2.png b/wp-content/plugins/flash-video-player/screenshot-2.png deleted file mode 100644 index ea48addac61f3e0ca7bf2f897d0caf3779a7390b..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/screenshot-2.png and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/screenshot-3.png b/wp-content/plugins/flash-video-player/screenshot-3.png deleted file mode 100644 index 9588f70bb9f69e49aedfa7a763af516eb0bb9d61..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/screenshot-3.png and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/screenshot-4.png b/wp-content/plugins/flash-video-player/screenshot-4.png deleted file mode 100644 index 67152a480c8a11cbb7e3c70cd96ce83a5c825364..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/screenshot-4.png and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/screenshot-5.png b/wp-content/plugins/flash-video-player/screenshot-5.png deleted file mode 100644 index f69b69a182a0d7c63656e8006191414a5486c118..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/screenshot-5.png and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/screenshot-6.png b/wp-content/plugins/flash-video-player/screenshot-6.png deleted file mode 100644 index 59d9c639688a0ae5d69e53fa9264af91c803f6ca..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/screenshot-6.png and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/bright/bright.swf b/wp-content/plugins/flash-video-player/skins/bright/bright.swf deleted file mode 100644 index 301cbc1d67d6a84d18605d65827e0deea4ee7aeb..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/bright/bright.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/overlay/overlay.swf b/wp-content/plugins/flash-video-player/skins/overlay/overlay.swf deleted file mode 100644 index 37b05fbecb37a4e36c0a638c7abdb7411dfeb789..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/overlay/overlay.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/overlay/px_sans_nouveaux.ttf b/wp-content/plugins/flash-video-player/skins/overlay/px_sans_nouveaux.ttf deleted file mode 100644 index 48cd1c20dcc9d334ab6723529aa31cd23084067a..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/overlay/px_sans_nouveaux.ttf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/simple/simple.swf b/wp-content/plugins/flash-video-player/skins/simple/simple.swf deleted file mode 100644 index 55b0ff0933c26d0816bc3ac3c1fa5ba89c19ca77..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/simple/simple.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/stylish/pf_tempesta_seven_condensed.ttf b/wp-content/plugins/flash-video-player/skins/stylish/pf_tempesta_seven_condensed.ttf deleted file mode 100644 index 4d2550097de7190603e1e393ea5c30c01672a957..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/stylish/pf_tempesta_seven_condensed.ttf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/stylish/stylish.swf b/wp-content/plugins/flash-video-player/skins/stylish/stylish.swf deleted file mode 100644 index 4c3803628bdf665e396f7bb161a82b2463a00215..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/stylish/stylish.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/swift/swift.swf b/wp-content/plugins/flash-video-player/skins/swift/swift.swf deleted file mode 100644 index d00fc69f10bec16cfa3ee7c0c8a38203d9a159c7..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/swift/swift.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/skins/thin/thin.swf b/wp-content/plugins/flash-video-player/skins/thin/thin.swf deleted file mode 100644 index 785a9b2a85e96895d71d5cab91c318478380c2b8..0000000000000000000000000000000000000000 Binary files a/wp-content/plugins/flash-video-player/skins/thin/thin.swf and /dev/null differ diff --git a/wp-content/plugins/flash-video-player/swfobject.js b/wp-content/plugins/flash-video-player/swfobject.js deleted file mode 100644 index 08fb27000ea28f383c3a1da47493446062ffe7f9..0000000000000000000000000000000000000000 --- a/wp-content/plugins/flash-video-player/swfobject.js +++ /dev/null @@ -1,5 +0,0 @@ -/* SWFObject v2.1 <http://code.google.com/p/swfobject/> - Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis - This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> -*/ -var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}(); \ No newline at end of file