--
ResourceSpace: Open Source Digital Asset Management
http://www.resourcespace.com
---
You received this message because you are subscribed to the Google Groups "ResourceSpace" group.
To unsubscribe from this group and stop receiving emails from it, send an email to resourcespac...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
$ffmpeg_supported_extensions = array( 'aaf', '3gp', 'asf', 'avchd', 'avi', 'cam', 'dat', 'dsh', 'flv', 'm1v', 'm2v', 'mkv', 'wrap', 'mov', 'mpeg', 'mpg', 'mpe', 'mp4', 'mxf', 'nsv', 'ogm', 'ogv', 'rm', 'ram', 'svi', 'smi', 'webm', 'wmv', 'divx', 'xvid', 'm4v', 'dv' );
.mov is in there. We've also migrated this from our older installation, so the config.php file on the new system is the same as the one on the old system. The old system operates correctly with .mov files. So, it looks like there's something that's changed with the new version.
New system is on SVN trunk, old system is subversion r9623.
thx
MIke
$mime_type_by_extension = array(
'mov' => 'video/quicktime',
'3gp' => 'video/3gpp',
'mpg' => 'video/mpeg',
'mp4' => 'video/mp4',
'avi' => 'video/msvideo',
'mp3' => 'audio/mpeg',
'wav' => 'audio/x-wav',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
'odt' => 'application/vnd.oasis.opendocument.text',
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
'odp' => 'application/vnd.oasis.opendocument.presentation',
'svg' => 'image/svg+xml',
);
I also have this in config.default.php:
Mappings between resource types and file extensions.
Can be used to automatically create resources in the system based on
the extension of the file.
*/
$resource_type_extension_mapping_default = 1;
$resource_type_extension_mapping = array(
2 => array('pdf', 'doc', 'docx', 'epub', 'ppt', 'pptx', 'odt', 'ods', 'tpl', 'ott' , 'rtf' , 'txt' , 'xml'),
3 => array('mov', '3gp', 'avi', 'mpg', 'mp4', 'flv', 'wmv'),
4 => array('flac', 'mp3', '3ga', 'cda', 'rec', 'aa', 'au', 'mp4a', 'wav', 'aac', 'ogg'),
);
Perhaps $resource_type_extension_mapping_default should be set to 2??
Mike M
--
ResourceSpace: Open Source Digital Asset Management
http://www.resourcespace.com
---
You received this message because you are subscribed to the Google Groups "ResourceSpace" group.
To unsubscribe from this group and stop receiving emails from it, send an email to resourcespac...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
____________________
# Params examples for different cases:# Converting .mov to .avi use "-g 60 -vcodec msmpeg4v2 -acodec pcm_u8 -f avi";## $ffmpeg_alternatives[0]["name"]="QuickTime H.264 WVGA";# $ffmpeg_alternatives[0]["filename"]="quicktime_h264";# $ffmpeg_alternatives[0]["extension"]="mov";# $ffmpeg_alternatives[0]["params"]="-vcodec h264 -s wvga -aspect 16:9 -b 2500k -deinterlace -ab 160k -acodec mp3 -ac 2";# $ffmpeg_alternatives[0]["lines_min"]=480;# $ffmpeg_alternatives[0]["alt_type"]='mywebversion';# FFMPEG - generation of alternative video file sizes/formats # It is possible to automatically generate different file sizes and have them attached as alternative files. # See below for examples. # The blocks must be numbered sequentially (0, 1, 2). # Ensure the formats you are specifiying with vcodec and acodec are supported by checking 'ffmpeg -formats'.