jeckman / YouTube-Downloader

PHP script for downloading videos from youtube; also parsing youtube feed into RSS enclosures for podcatchers
GNU General Public License v2.0
895 stars 474 forks source link

Downloading not working anymore #392

Closed MCrissDev closed 5 years ago

MCrissDev commented 5 years ago

Description

Streams like https://www.youtube.com/watch?v=6HCnT_NqrQI do not work anymore

Steps to Reproduce

Please include the direct url to the YouTube video.

1.https://www.youtube.com/watch?v=6HCnT_NqrQI 2.https://www.youtube.com/watch?v=GIITpi-WfhA 3.https://www.youtube.com/watch?v=QmGX3t0VjJM

Expected behavior: all detected streams should work

Actual behavior: all streams are 0 B

Version

0.11-dev

Additional Information

https has been enabled on server

firmatik commented 5 years ago

Downloading not working anymore = YES.

skattex commented 5 years ago

seems like youtube changed type of signature and deciphering of it

zannix commented 5 years ago

confirmed, does not work anymore

ghost commented 5 years ago

it does not work anymore, specially music videos

muiton commented 5 years ago

Working on it to fix it.

Quix0r commented 5 years ago

@madc0de do you need more examples? https://www.youtube.com/watch?v=g7TpJjOxXsA Before a single reload was sometimes needed to make it work again (non-zero byte download) just as a side note.

firmatik commented 5 years ago

I change file "/src/Provider/Youtube/Format.php" Line : 179 //$signature = '&signature=' . $sig; $signature = '&sig=' . $sig; Working ;)

ghost commented 5 years ago

I change file "/src/Provider/Youtube/Format.php" Line : 179 //$signature = '&signature=' . $sig; $signature = '&sig=' . $sig; Working ;)

It worked! MV are downloading now! Its is necessary to refresh the page because of zero byte sometimes but it is working. Thank you!!!!

MCrissDev commented 5 years ago

Closing this since now its working.