Add Avidemux
This commit is contained in:
parent
799ca61732
commit
ce4dbcb6b4
1 changed files with 14 additions and 0 deletions
14
modules/Avidemux.php
Normal file
14
modules/Avidemux.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue