BradB
unread,Mar 14, 2012, 5:59:33 PM3/14/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ResourceSpace
Second question:
I'm trying to get the Video Previews function working properly inside
ResourceSpace for .MTS files (AVCHD format). Files were created using
a JVC camcorder.
I can successfully upload the videos to RS, but it doesn't look as
though FFMPEG is being called.
Using the following command line, I can hand-convert the video, and by
copying the resultant .FLV into the proper directory in the filestore,
the preview will playback within RS.
ffmpeg -i "00001.MTS" -vcodec flv -f flv -r 25 -s 800x450 -aspect 16:9
-b 2000k -g 160 -cmp 2 -subcmp 2 -mbd 2 -flags +aic+cbp+mv0+mv4 -
trellis 2 -acodec libmp3lame -ac 2 -ar 44100 -ab 256k "00001.flv"
Previews for photos appear to be working just fine.
Per other postings I've seen in the googlegroup, I've added the
following to the end of my (basic) config.php file:
$ffmpeg_preview=true;
$ffmpeg_supported_extensions = array(
'aaf',
'3gp',
'asf',
'avchd',
'avi',
'cam',
'dat',
'dsh',
'flv',
'm1v',
'm2v',
'mkv',
'mts',
'wrap',
'mov',
'mpeg',
'mpg',
'mpe',
'mp4',
'mxf',
'nsv',
'ogm',
'rm',
'ram',
'svi',
'smi',
'wmv',
'divx',
'xvid',
);
Anyone have any ideas?
Thanks in advance!
Brad Brown