mirror of
https://github.com/timendum/Youtube-dl-WebUI.git
synced 2024-11-14 11:04:27 +08:00
18 lines
416 B
Text
18 lines
416 B
Text
<?php
|
|
|
|
//Default password is "root" with md5 hash
|
|
//No "/" at the end of outputFolder or logfolder
|
|
|
|
return array(
|
|
"bin" => "/usr/local/bin/yt-dlp",
|
|
"security" => true,
|
|
"password" => "63a9f0ea7bb98050796b649e85481845",
|
|
"outputFolder" => "downloads",
|
|
"extracter" => "ffmpeg",
|
|
"log" => true,
|
|
"outfilename" => "%(title)s-%(id)s.%(ext)s",
|
|
"logFolder" => "logs",
|
|
"max_dl" => 3,
|
|
"session_lifetime" => 86400);
|
|
|
|
?>
|