youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit be0e5dbd8356e92f8032d4cf8be2e668f1b30539
parent ad7291727499590a9449b1e3ba3d7a33b733ddd0
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  6 Sep 2015 07:20:47 +0600

[extractor/common] Extract submit inputs

Diffstat:
Myoutube_dl/extractor/common.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -733,7 +733,7 @@ class InfoExtractor(object): def _hidden_inputs(html): hidden_inputs = {} for input in re.findall(r'<input([^>]+)>', html): - if not re.search(r'type=(["\'])hidden\1', input): + if not re.search(r'type=(["\'])(?:hidden|submit)\1', input): continue name = re.search(r'name=(["\'])(?P<value>.+?)\1', input) if not name: