PatchBot/modules/Avidemux.php
2021-03-16 11:07:07 +01:00

14 lines
341 B
PHP

<?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;
}
}
?>