Changeset 901149
- Timestamp:
- 04/23/2014 06:08:59 PM (12 years ago)
- Location:
- wp-video-posts/trunk
- Files:
-
- 3 edited
-
classes/wpvp-helper-class.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wpvp.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-video-posts/trunk/classes/wpvp-helper-class.php
r900625 r901149 24 24 if(file_exists($source.'.jpg')) 25 25 unlink($source.'.jpg'); 26 $dir = plugin_dir_path( __FILE__ ).'test'; 27 if (!is_dir($dir)): 28 chmod($dir, 0777); 29 endif; 26 30 $str = $ffmpeg_path."ffmpeg -y -i ".$source." ". $extra ." ".$source.'.jpg'; 27 31 exec($str); -
wp-video-posts/trunk/readme.txt
r900625 r901149 134 134 135 135 == Changelog == 136 = 3.1.1 = 137 - Typo fix. 138 - Added permission check on test directory within the plugin. 139 136 140 = 3.1 = 137 141 - Multisite bug fix for uploaded media location. -
wp-video-posts/trunk/wpvp.php
r900625 r901149 4 4 Plugin URI: http://cmstactics.com 5 5 Description: WP Video Posts creates a custom post for uploaded videos. You can upload videos of different formats (FLV, F4V, MP4, AVI, MOV, 3GP and WMV) and the plugin will convert it to MP4 and play it using Flowplayer. 6 Version: 3.1 6 Version: 3.1.1 7 7 Author: Alex Rayan, cmstactics 8 8 Author URI: http://cmstactics.com … … 24 24 * @var string WPVPMediaEncoder version 25 25 */ 26 public $version = '3.1 ';26 public $version = '3.1.1'; 27 27 public static function init(){ 28 28 $class = __CLASS__; … … 464 464 public function wpvp_check_ffmpeg_callback(){ 465 465 $helper = new WPVP_Helper(); 466 $ffmpeg = $helper->wpvp_command_exists_check( $command,true);466 $ffmpeg = $helper->wpvp_command_exists_check('ffmpeg',true); 467 467 if($ffmpeg) 468 468 echo '<span class="true">FOUND</span>';
Note: See TracChangeset
for help on using the changeset viewer.