Paella plugin: org.opencast.paella.downloadsPlugin

This plugin adds a panel to download the videos.

The configurations for this plugin are done for each tenant. So you need to modify the plugins section of the paella config file.

Configuration

You need to enabled the org.opencast.paella.downloadsPlugin plugin.

{
    "org.opencast.paella.downloadsPlugin": {
        "enabled": true,

        "downloadFlavors": false,
        "downloadTags": false,
        "downloadMimeTypes": ["audio/m4a", "video/mp4"],

        "enableOnLicenses": [
            "CC-BY",
            "CC-BY-SA",
            "CC-BY-ND",
            "CC-BY-NC",
            "CC-BY-NC-SA",
            "CC-BY-NC-ND",
            "CC0"
        ],
        "enableOnWritePermission": true
    }    
}

The plugin is enabled when enabled is true and one of the two conditions (enableOnLicenses or enableOnWritePermission) is valid.

Configuration parameters: