Good Morning All -
I have just installed the newest update and have been playing with the new video player and running into issues with creating H264 Previews that work with iOS.
The install check looks fine
| PHP version | 5.5.9-1ubuntu4.6 (config: /etc/php5/apache2/php.ini) | OK |
| MySQL version | 5.5.41-0ubuntu0.14.04.1 (client-encoding: latin1) | OK |
| GD version | 2.1.1-dev | OK |
| PHP.INI value for 'memory_limit' | 1024M | OK |
| PHP.INI value for 'post_max_size' | 1024M | OK |
| PHP.INI value for 'upload_max_filesize' | 1024M | OK |
| Write access to /var/www/rs7/include/../filestore | OK |
| Write access to gfx/homeanim/gfx | OK |
| Blocked browsing of 'filestore' directory | OK |
| Large file support (64 bit platform) | OK |
| ImageMagick | Version: ImageMagick 6.7.7-10 2014-03-06 Q16 http://www.imagemagick.org | OK |
| FFmpeg | ffmpeg version 1.2.6-7:1.2.6-1~trusty1 | OK |
| Ghostscript | GPL Ghostscript 9.10 (2013-08-30) | OK |
| EXIF extension | OK |
| ExifTool | 9.46 | OK
|
I can upload video and make a preview that plays fine in a browser, but the video I am creating for that preview when I try to play it back on an mobile device says that there are no playable files for this device.
I have looked in the filestore and I am creating a .mp4 video file, there are no .flv files there.
My settings from config.php are as follows:
# Use VideoJS for video playback (as opposed to FlashPlayer, which we are deprecating)
$videojs=true;
$ffmpeg_preview=true;
$ffmpeg_preview_seconds=600; # how many seconds to preview
$ffmpeg_preview_extension="mp4";
$ffmpeg_preview_min_width=32;
$ffmpeg_preview_min_height=18;
$ffmpeg_preview_max_width=480;
$ffmpeg_preview_max_height=270;
$ffmpeg_preview_options="-acodec mp3 -ar 48000 -vcodec h264";
# ffmpeg_global_options: options to be applied to every ffmpeg command.
#$ffmpeg_global_options = "-loglevel panic"; # can be used for recent versions of ffmpeg when verbose output prevents run_command completing
#$ffmpeg_global_options = "-v panic"; # use for older versions of ffmpeg as above
$ffmpeg_global_options = "";
#$ffmpeg_snapshot_fraction=0.1; # Set this to specify a point in the video at which snapshot image is taken. Expressed as a proportion of the video duration so must be set between 0 and 1. Only valid if duration is greater than 10 seconds.
$ffmpeg_snapshot_seconds=10; # Set this to specify the number of seconds into the video at which snapshot should be taken, overrides the $ffmpeg_snapshot_fraction setting
I am making alternate versions of the uploaded video and they are working fine, I have the debug log turned on and I am not seeing any errors there.
Thoughts anyone ?