Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Embedded youtube-dl using an older different version of youtube-dl than what youtube-dl --version shows #14150
Comments
|
Other Info
|
|
In case anyone else comes across this, apparently pip in my specific case, was only installing and updating the python 3.5 version, so I needed to specify pip2. Closing issue |
Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2017.09.02. If it's not, read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your issue
If the purpose of this issue is a bug report, site support request or you are not completely sure provide the full verbose output as follows:
Output
Test Code
Description of your issue, suggested solution and other information
Hey Guys. I wrote a script last year that downloads trailers from Fandango's trailer list and adds them to Plex before they're in theaters and removes them when they hit. So that way when you sit down to watch a movie on plex, there will be a configurable amount of trailers before the movie starts of all new movies that are coming out. The link can be found here.
Anyway I ran into an issue on my installation that youtube-dl throws
ERROR: Unable to extract title;. I am able to use the command line version to download but when I try to embed it in python code and download info from playlists, it gives me this error. I did install from pypi. On my host when I use the command line version, it shows 2017.09.2, however in the process of filling out a bug report, I noticed in the verbose output, its using 2016.08.19. I've looked through the issues and generally when this happens the answer seems to be "You'll need to update to the latest version" so I'm sure that it is it. I usedpip listto show that its running the 2017.09.2 version as well asyoutube-dl --version.Playlist I was trying to download from: https://www.youtube.com/playlist?list=PLScC8g4bqD47c-qHlsfhGH3j6Bg7jzFy-
Any ideas?