Just add next changes to swftools.module for f4v extensions support:

switch (strtolower($path_parts['extension'])) {
case 'flv':
>>> case 'f4v':

$mime_types = array(
'flv' => 'application/octet-stream',
...
>>> 'f4v' => 'application/octet-stream',
...
);

Comments

Stuart Greenfield’s picture

Status: Needs work » Needs review

This will be fixed properly in 6.x-3.x which is due out shortly. File extensions are now exposed on the configuration page so you can arbitrarily add more file extensions and link them with the the appropriate type, e.g. images, audio, video. SWF Tools will then process files with that extension through the appropriate action.