Media Mover Custom Command

Categories

Component ID

344796

Component name

Media Mover Custom Command

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Downloads

2208

Component created

Component changed

Component body

Allow user to define custom commands for process, storage and complete actions in Media Mover.
Module uses tokens to provide easy access to file values.

Dependencies

- media_mover_api
- token
- mm_token

Install

1) Copy the mm_custom_command folder to the modules folder in your installation.

2) Enable the module using Administer -> Modules (/admin/build/modules).

3) Go to Media Mover configuration where you want to use custom command and choose "Custom Command: Use custom command".

4) Set 'Output file' and 'Command'.

Examples

Encode files with Sorenson Squeeze 5 on Windows machine running Drupal
- Create your Media Mover configuration
- For process action choose "Custom Command: Use custom command"
- Set 'Output file' for example 'video-[nid].flv'
- Set command. Because I didn't find parameter for Squeeze to set output file I
will use batch file 'compress-video.bat' which will after encoding rename
output file. So command will look like this:
'd:compress-video.bat [harvest_file] [output_file]'

Rename/move file
- Create your Media Mover configuration
- For storage action choose "Custom Command: Use custom command"
- Set 'Output file' for example 'video-[nid].flv'
- Set 'Command' to 'co [process_file] [output_file]'

....