feat(Download): adds streaming and local download options

This commit is contained in:
Brock H Caldwell
2025-11-08 16:26:38 -06:00
parent 7dd40b4525
commit 37e13347b2
9 changed files with 48 additions and 3 deletions

View File

@@ -68,4 +68,10 @@ class Torrentio
return $results;
}
public function getDestinationUrl(string $url)
{
$request = get_headers($url)[8];
return explode(' ', $request)[1];
}
}