-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build of develop from Wed Nov 8 21:21:40 UTC 2023
- Loading branch information
1 parent
e1f9cbd
commit e61c517
Showing
15 changed files
with
239 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
183 changes: 183 additions & 0 deletions
183
develop/admin/modules/paella.player7/plugins/org.opencast.paella.downloadsPlugin/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
|
||
|
||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
|
||
|
||
<link rel="shortcut icon" href="../../../../img/favicon.ico"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> | ||
<title>org.opencast.paella.downloadsPlugin - Administration Guide</title> | ||
<link href="../../../../css/bootstrap-3.3.7.min.css" rel="stylesheet"> | ||
<link href="../../../../css/font-awesome-4.7.0.css" rel="stylesheet"> | ||
<link href="../../../../css/base.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="../../../../css/highlight.css"> | ||
<link href="../../../../css/extra.css" rel="stylesheet"> | ||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<script src="../../../../js/jquery-3.2.1.min.js"></script> | ||
<script src="../../../../js/bootstrap-3.3.7.min.js"></script> | ||
<script src="../../../../js/highlight.pack.js"></script> | ||
|
||
<base target="_top"> | ||
<script> | ||
var base_url = '../../../..'; | ||
var is_top_frame = false; | ||
|
||
var pageToc = [ | ||
{title: "Paella plugin: org.opencast.paella.downloadsPlugin", url: "#_top", children: [ | ||
{title: "Configuration", url: "#configuration" }, | ||
]}, | ||
]; | ||
|
||
</script> | ||
<script src="../../../../js/base.js"></script> | ||
<script src="../../../../javascript/extra.js"></script> | ||
<script src="../../../../javascript/popper.js"></script> | ||
<script src="../../../../javascript/tippy.js"></script> | ||
</head> | ||
|
||
<body> | ||
<script> | ||
if (is_top_frame) { $('body').addClass('wm-top-page'); } | ||
</script> | ||
|
||
|
||
|
||
<div class="container-fluid wm-page-content"> | ||
<a name="_top"></a> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<div class="row wm-article-nav-buttons" role="navigation" aria-label="navigation"> | ||
|
||
<div class="wm-article-nav pull-right"> | ||
<a href="../org.opencast.paella.editorPlugin/" class="btn btn-xs btn-default pull-right"> | ||
Next | ||
<i class="fa fa-chevron-right" aria-hidden="true"></i> | ||
</a> | ||
<a href="../org.opencast.paella.editorPlugin/" class="btn btn-xs btn-link"> | ||
org.opencast.paella.editorPlugin | ||
</a> | ||
</div> | ||
|
||
<div class="wm-article-nav"> | ||
<a href="../org.opencast.paella.descriptionPlugin/" class="btn btn-xs btn-default pull-left"> | ||
<i class="fa fa-chevron-left" aria-hidden="true"></i> | ||
Previous</a><a href="../org.opencast.paella.descriptionPlugin/" class="btn btn-xs btn-link"> | ||
org.opencast.paella.descriptionPlugin | ||
</a> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
|
||
<h1 id="paella-plugin-orgopencastpaelladownloadsplugin">Paella plugin: org.opencast.paella.downloadsPlugin</h1> | ||
<p>This plugin adds a panel to download the videos.</p> | ||
<p>The configurations for this plugin are done for each tenant. So you need to modify the <code>plugins</code> | ||
section of the <a href="../../configuration/">paella config file</a>.</p> | ||
<h2 id="configuration">Configuration</h2> | ||
<p>You need to enabled the <code>org.opencast.paella.downloadsPlugin</code> plugin.</p> | ||
<pre><code class="language-json">{ | ||
"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 | ||
} | ||
} | ||
</code></pre> | ||
<p>The plugin is enabled when <code>enabled</code> is true and one of the two conditions (<code>enableOnLicenses</code> or <code>enableOnWritePermission</code>) is valid.</p> | ||
<p>Configuration parameters:</p> | ||
<ul> | ||
<li> | ||
<p><strong>enableOnLicenses</strong>: The plugin is enabled if the <code>episode license</code> match any of the the licenses</p> | ||
<p>Valid values: <code>false</code> / Array strings</p> | ||
<p>Example: <code>[ "CC-BY", "CC-BY-SA" ]</code></p> | ||
</li> | ||
<li> | ||
<p><strong>enableOnWritePermission</strong>: The plugin is enabled if the <code>user</code> has <code>write</code> permission on the episode.</p> | ||
<p>Valid values: <code>true</code> / <code>false</code></p> | ||
</li> | ||
<li> | ||
<p><strong>downloadFlavors</strong>: Filter the media available to download by the track flavor.</p> | ||
<p>Valid values: <code>false</code> / Array strings</p> | ||
</li> | ||
<li> | ||
<p><strong>downloadTags</strong>: Filter the media available to download by the track tags.</p> | ||
<p>Valid values: <code>false</code> / Array strings</p> | ||
</li> | ||
<li> | ||
<p><strong>downloadMimeTypes</strong>: Filter the media available to download by the track mimetype.</p> | ||
<p>Valid values: <code>false</code> / Array strings</p> | ||
</li> | ||
</ul> | ||
|
||
<br> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<div class="row wm-article-nav-buttons" role="navigation" aria-label="navigation"> | ||
|
||
<div class="wm-article-nav pull-right"> | ||
<a href="../org.opencast.paella.editorPlugin/" class="btn btn-xs btn-default pull-right"> | ||
Next | ||
<i class="fa fa-chevron-right" aria-hidden="true"></i> | ||
</a> | ||
<a href="../org.opencast.paella.editorPlugin/" class="btn btn-xs btn-link"> | ||
org.opencast.paella.editorPlugin | ||
</a> | ||
</div> | ||
|
||
<div class="wm-article-nav"> | ||
<a href="../org.opencast.paella.descriptionPlugin/" class="btn btn-xs btn-default pull-left"> | ||
<i class="fa fa-chevron-left" aria-hidden="true"></i> | ||
Previous</a><a href="../org.opencast.paella.descriptionPlugin/" class="btn btn-xs btn-link"> | ||
org.opencast.paella.descriptionPlugin | ||
</a> | ||
</div> | ||
|
||
</div> | ||
|
||
<br> | ||
</div> | ||
|
||
<footer class="container-fluid wm-page-content"> | ||
<p> | ||
<a href="https://github.com/opencast/opencast/edit/develop/docs/guides/admin/docs/modules/paella.player7/plugins/org.opencast.paella.downloadsPlugin.md"><i class="fa fa-github"></i> | ||
Edit on GitHub</a> | ||
</p> | ||
<p>Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a> using <a href="https://github.com/gristlabs/mkdocs-windmill">Windmill</a> theme by Grist Labs.</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The default admin interface has changed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Copy over tags from source tracks to trimmed tracks in the editor WOH. Was already the case when trimming was skipped. | ||
If you relied on the old behavior, you might need to amend your workflows. |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
commit 00cac259b759d8de471456870c8632114c2ccd7f | ||
Author: Lars Kiesow <[email protected]> | ||
Date: Tue Nov 7 10:15:46 2023 +0100 | ||
commit 72085af025c36712f5f3c08b793fca36d20f47b2 | ||
Author: Greg Logan <[email protected]> | ||
Date: Wed Nov 8 14:12:50 2023 -0600 | ||
|
||
Merge r/14.x into develop | ||
Merge branch 'documentation-update' of berthob98/opencast-1 into develop | ||
|
||
Pull request #5417 | ||
|
||
Fix broken links in documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.