Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hasnhasan/020dfea6683dfa0d4e5c42f26d2037e8 to your computer and use it in GitHub Desktop.
Save hasnhasan/020dfea6683dfa0d4e5c42f26d2037e8 to your computer and use it in GitHub Desktop.
YoutubeDl-php
$dl->debug(function ($type, $buffer) {
if (preg_match_all('/\[download\] (.*?)\% of (.*?)M/',$buffer,$match)) {
$perchant = (int)trim($match[1][0]);
if ($perchant > 0) {
echo $perchant . "<br>";
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment