Add Avidemux

This commit is contained in:
Steffen Lange 2021-03-16 11:07:07 +01:00
parent 799ca61732
commit ce4dbcb6b4

14
modules/Avidemux.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Avidemux extends PatchBase {
function __construct() {
parent::__construct('Mean', 'Avidemux', 'http://avidemux.sourceforge.net/download.html');
}
function check() : bool {
if ($this->fetch('http://avidemux.sourceforge.net/download.html'))
return $this->parse('/avidemux_([\d\.]+)\.tar\.gz/');
return false;
}
}
?>