mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
29 lines
494 B
PHP
Executable File
29 lines
494 B
PHP
Executable File
<?php
|
|
|
|
require_once("config.php");
|
|
require_once(WWW_DIR."/lib/postprocess.php");
|
|
|
|
$i=1;
|
|
while($i=1)
|
|
{
|
|
{
|
|
$postprocess = new PostProcess(true);
|
|
$postprocess->processUnwanted();
|
|
}
|
|
{
|
|
$postprocess = new PostProcess(true);
|
|
$postprocess->processMusicFromMediaInfo();
|
|
}
|
|
{
|
|
$postprocess = new PostProcess(true);
|
|
$postprocess->processOtherMiscCategory();
|
|
}
|
|
{
|
|
$postprocess = new PostProcess(true);
|
|
$postprocess->processUnknownCategory();
|
|
}
|
|
sleep(5);
|
|
}
|
|
|
|
?>
|