Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

Avalon has the ability to perform management of media files after it has successfully processed them. There are three management strategies:

  • move
  • delete
  • none (no action)

Move Strategy

The move strategy will move master files to the configured path once they have been processed.  This path needs to be file system accessible.

Example configuration in settings.yml
 master_file_management:
   strategy: 'move'
   path: '/mnt/diskarray/avalon-archive'

The new masterfile name will be prepended with the pid, replacing the colon with an underscore. 
Example: movie.mp4 -> avalon_2390-movie.mp4 

When the file has been archived, you can see the new filename in the item's raw metadata.

Delete Strategy

The delete strategy will delete the master file after it has been processed.

Example configuration in settings.yml
 master_file_management:
   strategy: 'delete'

None Strategy

The 'none' strategy will leave the master files in place after processing.

Example configuration in settings.yml
 master_file_management:
   strategy: 'none'
  • No labels