Video Embed & Thumbnail Generator - Version 1.0.1

Version Description

Download this release

Release Info

Developer kylegilman
Plugin Icon 128x128 Video Embed & Thumbnail Generator
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0 to 1.0.1

images/cameranoise_logo.png DELETED
Binary file
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: kylegilman
3
  Tags: video, html5, shortcode, thumbnail, ffmpeg
4
  Requires at least: 3.0
5
  Tested up to: 3.2.1
6
- Stable tag: 1.0
7
 
8
  Generates thumbnails, HTML5-compliant videos, and embed codes for locally hosted videos. Requires FFMPEG for thumbnails and encodes.
9
 
@@ -58,9 +58,6 @@ I'm not really a software developer. I'm just a film editor with some time on hi
58
 
59
  Some of it will work without FFMPEG. You can generate embed codes for your videos on any host because that part of the plugin is JavaScript running in your browser. Without FFMPEG you won't be able to generate thumbnails or generate HTML5 videos. There is no way around this. A program has to read the video files in order to generate the thumbnails, and FFMPEG is the best one I've found to do that.
60
 
61
- = Why do I have to upload the video separately and then copy and paste the URL? =
62
-
63
- Because I am not a great programmer, and this was too much for me to figure out. In the future I'm hoping to integrate the plugin with the upload dialog box to streamline the process.
64
 
65
  == Screenshots ==
66
 
@@ -70,8 +67,10 @@ Because I am not a great programmer, and this was too much for me to figure out.
70
 
71
  == Changelog ==
72
 
 
 
73
  1.0 Huge re-write. Integrated with Wordpress Media Library and added WEBM support. Increased control over thumbnail generation. Added tab to Insert Video dialog box for adding by URL (like the old version).
74
 
75
  0.2.1 Check made to ensure iPhone/iPod/Android compatible encode video height is an even number when HTML5 video encodes are made.
76
 
77
- 0.2 First Release
3
  Tags: video, html5, shortcode, thumbnail, ffmpeg
4
  Requires at least: 3.0
5
  Tested up to: 3.2.1
6
+ Stable tag: 1.0.1
7
 
8
  Generates thumbnails, HTML5-compliant videos, and embed codes for locally hosted videos. Requires FFMPEG for thumbnails and encodes.
9
 
58
 
59
  Some of it will work without FFMPEG. You can generate embed codes for your videos on any host because that part of the plugin is JavaScript running in your browser. Without FFMPEG you won't be able to generate thumbnails or generate HTML5 videos. There is no way around this. A program has to read the video files in order to generate the thumbnails, and FFMPEG is the best one I've found to do that.
60
 
 
 
 
61
 
62
  == Screenshots ==
63
 
67
 
68
  == Changelog ==
69
 
70
+ 1.0.1 Quick fix to add mdetect.php to the plugin package from Wordpress
71
+
72
  1.0 Huge re-write. Integrated with Wordpress Media Library and added WEBM support. Increased control over thumbnail generation. Added tab to Insert Video dialog box for adding by URL (like the old version).
73
 
74
  0.2.1 Check made to ensure iPhone/iPod/Android compatible encode video height is an even number when HTML5 video encodes are made.
75
 
76
+ 0.2 First Release
video-embed-thumbnail-generator.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Video Embed & Thumbnail Generator
4
  Plugin URI: http://www.kylegilman.net/2011/01/18/video-embed-thumbnail-generator-wordpress-plugin/
5
  Description: Generate video thumbnails, HTML5-compliant videos, and video embed shortcodes. Some functions require FFMPEG.
6
- Version: 1.0
7
  Author: Kyle Gilman
8
  Author URI: http://www.kylegilman.net/
9
 
@@ -1089,4 +1089,4 @@ add_action('admin_enqueue_scripts', 'enqueue_kg_script');
1089
 
1090
  add_shortcode('FMP', 'FMP_shortcode');
1091
 
1092
- ?>
3
  Plugin Name: Video Embed & Thumbnail Generator
4
  Plugin URI: http://www.kylegilman.net/2011/01/18/video-embed-thumbnail-generator-wordpress-plugin/
5
  Description: Generate video thumbnails, HTML5-compliant videos, and video embed shortcodes. Some functions require FFMPEG.
6
+ Version: 1.0.1
7
  Author: Kyle Gilman
8
  Author URI: http://www.kylegilman.net/
9
 
1089
 
1090
  add_shortcode('FMP', 'FMP_shortcode');
1091
 
1092
+ ?>