Help me to use external downloader
See original GitHub issuePlease follow the guide below
- You will be asked some questions and requested to provide some information, please read them carefully and answer honestly
- Put an
x
into all the boxes [ ] relevant to your issue (like that [x]) - Use Preview tab to see how your issue will actually look like
Make sure you are using the latest version: run youtube-dl --version
and ensure your version is 2016.09.04.1. If it’s not read this FAQ entry and update. Issues with outdated version will be rejected.
- [ x] I’ve verified and I assure that I’m running youtube-dl 2016.09.04.1
Before submitting an issue make sure you have:
- [x ] At least skimmed through README and most notably FAQ and BUGS sections
- [x ] Searched the bugtracker for similar issues including closed ones
What is the purpose of your issue?
- Bug report (encountered problems with youtube-dl)
- Site support request (request for adding support for a new site)
- Feature request (request for a new functionality)
- [x ] Question
- Other
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:
Add -v
flag to your command line you run youtube-dl with, copy the whole output and insert it here. It should look similar to one below (replace it with your log inserted between triple ```):
$ youtube-dl -v <your command line>
PS C:\Users\vicky\downloads> youtube-dl -v
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v']
[debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252
[debug] youtube-dl version 2016.09.04.1
[debug] Python version 3.4.3 - Windows-8-6.2.9200
[debug] exe versions: none
[debug] Proxy map: {}
Usage: youtube-dl [OPTIONS] URL [URL...]
youtube-dl: error: You must provide at least one URL.
Type youtube-dl --help to see a list of all options.
PS C:\Users\vicky\downloads>
Description of your issue, suggested solution and other information
i need help to use external downloader i generate downloading url from video streaming site and its save in link.txt using your command like this youtube-dl --verbose http://app.pluralsight.com/courses/nodejs-security-express-angular-get-started --get-url --username 12345@hotmail.com --password 12345 > links.txt
after that its save links in txt file but now i want to download these videos through external download so can you plz explain me what is exact command to use it and it will read this txt file and download all videos
this txt file saving in this directory C:\Users\vicky\Downloads
thanks
Issue Analytics
- State:
- Created 7 years ago
- Comments:27
it’s possible with some scripting to do what you want using aria2c(save files with proper name), the links file should be like this:
i didn’t said that you have to change the url, i said:
replace
original_url
with the original url andfilename.mp4
with filename related to the url. put it in a file and download it using:aria2c -i links.txt
.