Server Video Conversion Modules & Tools
A brief test to check weather server modules exist or not and what are there versions and paths
Modules and paths
{check_module_path path='ffmpeg' get_path='true' assign='ffmpeg_status'}
FFMPEG
FFmpeg is used to covert videos from different versions to FLV , MP4 and many other formats.
Learn more
{if $ffmpeg_status.status=='ok'}
Version
{$ffmpeg_status.version} • Expected Path
{get_binaries path=ffmpeg type=server}
{else}
ffmpeg is not found
{if $ffmpeg_status.error}
{$ffmpeg_status.error}
{/if}
{/if}
{check_module_path path='php' get_path='true' assign='php_status'}
PHP CLI
PHP CLI is used to peform video conversion in a background process.
Learn more
{if $php_status.status=='ok'}
Version
{$php_status.version} • Expected Path
{get_binaries path=php type=server}
{else}
php is not found
{if $php_status.error}
{$php_status.error}
{/if}
{/if}
{check_module_path path='flvtool2' get_path='true' assign='flvtool2_status'}
FLVTool2
FLVTool2 is a tool to repair FLV files to make them streamable
Learn more
{if $flvtool2_status.status=='ok'}
Version
{$flvtool2_status.version} • Expected Path
{get_binaries path=flvtool2 type=server}
{else}
flvtool2 is not found
{if $flvtool2_status.error}
{$flvtool2_status.error}
{/if}
{/if}
{check_module_path path='mp4box' get_path='true' assign='mp4box_status'}
MP4Box
MP4Box is a tool used to repair MP4 files to make them streamable
Learn more
{if $mp4box_status.status=='ok'}
Version
{if $mp4box_status.version}
{$mp4box_status.version}
{/if} • Expected Path
{get_binaries path=mp4box type=server}
{else}
Mp4box is not found
{if $mp4box_status.error}
{$mp4box_status.error}
{/if}
{/if}