Display error message (fixes #1)
This commit is contained in:
parent
0651377e93
commit
efcf786b44
2 changed files with 9 additions and 5 deletions
10
download.php
10
download.php
|
@ -124,12 +124,16 @@ Class VideoDownload
|
|||
if (isset($format)) {
|
||||
$cmd .= ' -f '.escapeshellarg($format);
|
||||
}
|
||||
$cmd .=' --dump-json '.escapeshellarg($url);
|
||||
$cmd .=' --dump-json '.escapeshellarg($url)." 2>&1";
|
||||
exec(
|
||||
$cmd,
|
||||
$json
|
||||
$json, $code
|
||||
);
|
||||
return $json[0];
|
||||
if ($code>0) {
|
||||
return array('success'=>false, 'error'=>$json);
|
||||
} else {
|
||||
return json_decode($json[0]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue