From 6b6e571b71b9dd3f17e563e7b0258e68f5063b55 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Thu, 19 Mar 2020 10:01:55 +0100 Subject: [PATCH] Explain that the Video class accepts any youtube-dl format string (see #260) --- classes/Video.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/classes/Video.php b/classes/Video.php index b784fe1..9c6adbf 100644 --- a/classes/Video.php +++ b/classes/Video.php @@ -86,6 +86,8 @@ class Video * * @param string $webpageUrl URL of the page containing the video * @param string $requestedFormat Requested video format + * (can be any format string accepted by youtube-dl, + * including selectors like "[height<=720]") * @param string $password Password */ public function __construct($webpageUrl, $requestedFormat = 'best', $password = null)