mirror of
https://github.com/timendum/Youtube-dl-WebUI.git
synced 2024-11-15 03:24:38 +08:00
17 lines
381 B
Text
17 lines
381 B
Text
<?php
|
|
|
|
//Default password is "root" with md5 hash
|
|
//No "/" at the end of outputFolder or logfolder
|
|
|
|
return array(
|
|
"security" => true,
|
|
"password" => "63a9f0ea7bb98050796b649e85481845",
|
|
"outputFolder" => "downloads",
|
|
"extracter" => "avconv",
|
|
"log" => true,
|
|
"outfilename" => "%(title)s-%(id)s.%(ext)s",
|
|
"logFolder" => "logs",
|
|
"max_dl" => 3,
|
|
"session_lifetime" => 86400);
|
|
|
|
?>
|