Example #1
0
def deploy():
    if exiv2_dir_path():
        sys, rel, _ver, deployed = deployTool(join(pythonPath(), 'resources', 'exiv2'), exiv2_dir_path())
        if not deployed:
            log.error('Unable to deploy Exiv2 on %s %s!\n    You must install it manually '
                      'and set the proper path in the plugins.properties\n    file for the property '
                      'metadata_extractor_path (e.g. /usr/bin/exiv2).' % (sys, rel))
Example #2
0
def deploy():
    if gm_dir_path():
        sys, rel, _ver, deployed = deployTool(join(pythonPath(), 'resources', 'gm'), gm_dir_path())
        if not deployed:
            log.error('Unable to deploy GraphicsMagic on %s %s!\n    You must install it manually '
                      'and set the proper path in the plugins.properties\n    file for the property '
                      'gm_path (e.g. /usr/bin/gm).' % (sys, rel))
Example #3
0
def deploy():
    if ffmpeg_dir_path():
        sys, rel, _ver, deployed = deployTool(join(pythonPath(), 'resources', 'ffmpeg'), ffmpeg_dir_path())
        if not deployed:
            log.error('Unable to deploy FFMpeg on %s %s!\n    You must install it manually '
                      'and set the proper path in the plugins.properties\n    file for the property '
                      'ffmpeg_path (e.g. /usr/bin/ffmpeg).' % (sys, rel))
Example #4
0
def deploy():
    if ffmpeg_dir_path():
        sys, rel, _ver, deployed = deployTool(
            join(pythonPath(), 'resources', 'ffmpeg'), ffmpeg_dir_path())
        if not deployed:
            log.error(
                'Unable to deploy FFMpeg on %s %s!\n    You must install it manually '
                'and set the proper path in the plugins.properties\n    file for the property '
                'ffmpeg_path (e.g. /usr/bin/ffmpeg).' % (sys, rel))
Example #5
0
def deploy():
    if exiv2_dir_path():
        sys, rel, _ver, deployed = deployTool(
            join(pythonPath(), 'resources', 'exiv2'), exiv2_dir_path())
        if not deployed:
            log.error(
                'Unable to deploy Exiv2 on %s %s!\n    You must install it manually '
                'and set the proper path in the plugins.properties\n    file for the property '
                'metadata_extractor_path (e.g. /usr/bin/exiv2).' % (sys, rel))
Example #6
0
def deploy():
    if exiv2_dir_path(): deployTool(join(pythonPath(), 'resources', 'exiv2'), exiv2_dir_path())
Example #7
0
def deploy():
    if gm_dir_path(): deployTool(join(pythonPath(), 'resources', 'gm'), gm_dir_path())
Example #8
0
def deploy():
    if exiv2_dir_path():
        deployTool(join(pythonPath(), 'resources', 'exiv2'), exiv2_dir_path())
Example #9
0
def deploy():
    if ffmpeg_dir_path():
        deployTool(join(pythonPath(), 'resources', 'ffmpeg'),
                   ffmpeg_dir_path())
Example #10
0
def deploy():
    if ffmpeg_dir_path(): deployTool(join(pythonPath(), 'resources', 'ffmpeg'), ffmpeg_dir_path())