Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

youtube-dl shows me as a owner , pull request bug maybe #11092

Closed
1 of 7 tasks
siddht4 opened this issue Nov 2, 2016 · 19 comments
Closed
1 of 7 tasks

youtube-dl shows me as a owner , pull request bug maybe #11092

siddht4 opened this issue Nov 2, 2016 · 19 comments

Comments

@siddht4
Copy link

siddht4 commented Nov 2, 2016

Please 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.11.02. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.

  • I've verified and I assure that I'm running youtube-dl 2016.11.02

Before submitting an issue make sure you have:

  • At least skimmed through README and most notably FAQ and BUGS sections
  • 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>
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://www.youtube.com/watch?v=BaW_jenozKcj']
[debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251
[debug] youtube-dl version 2016.11.02
[debug] Python version 2.7.11 - Windows-2003Server-5.2.3790-SP2
[debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4
[debug] Proxy map: {}
...
<end of log>

If the purpose of this issue is a site support request please provide all kinds of example URLs support for which should be included (replace following example URLs by yours):


Description of your issue, suggested solution and other information

Explanation of your issue in arbitrary form goes here. Please make sure the description is worded well enough to be understood. Provide as much context and examples as possible.
If work on your issue requires account credentials please provide them or explain how one can obtain them.

i just updated my youtube-dl branch (repo) and it shows me as an owner ,

Uploading Screenshot_2016-11-02_11-39-27.jpg…

is it a bug

@siddht4
Copy link
Author

siddht4 commented Nov 2, 2016

@yan12125
Copy link
Collaborator

yan12125 commented Nov 2, 2016

Yes, you are the owner of siddht1/youtube-dl. Anyway, that's controlled by Github Inc., not us.

@yan12125 yan12125 closed this as completed Nov 2, 2016
@siddht4
Copy link
Author

siddht4 commented Nov 2, 2016

and you youtube-dl collaborator

@yan12125
Copy link
Collaborator

yan12125 commented Nov 2, 2016

Yeah @rg3 added me about 1.5 years ago. It's my pleasure to write codes for this awesome tool!

@siddht4
Copy link
Author

siddht4 commented Nov 2, 2016

@yan12125 can you teach me to write the extractors code , i want to add support to more sites but i m unable to understand it

@yan12125
Copy link
Collaborator

yan12125 commented Nov 2, 2016

First check how to get the video URL. In general looking into the network log of developer tools is useful. Both the latest Firefox and Chrome have built-in developer tools. Then check some small extractors for how to use functions like _download_webpage, _html_search_regex, etc.

@siddht4
Copy link
Author

siddht4 commented Nov 2, 2016

then
i get video id through this ,
i generally use wget or aria if thats indeed a download link ,

but how to code it for youtube-dl

@yan12125
Copy link
Collaborator

yan12125 commented Nov 2, 2016

Here's an example: https://github.com/rg3/youtube-dl/blob/master/README.md#adding-support-for-a-new-site. Add 'url': video_url to the returned dict if there's only one format. Otherwise, use 'formats' for videos with multiple formats.

@siddht4
Copy link
Author

siddht4 commented Nov 6, 2016

is any option to directly dump the porn sitez supported by youtube-dl

@yan12125
Copy link
Collaborator

yan12125 commented Nov 6, 2016

@siddht1 There's a request #6497 but rejected due to technical complexity of proposed solutions

@siddht4
Copy link
Author

siddht4 commented Nov 6, 2016

@yan12125 is it possible to use the age limit to set it in the other bracket i.e in a way (age>18)

@yan12125
Copy link
Collaborator

yan12125 commented Nov 6, 2016

I guess --match-filter works

@siddht4
Copy link
Author

siddht4 commented Nov 6, 2016

@yan12125 please give the entire usage , if present , by the way #6497 is just the opposite i wanted , but can work i.e instead of blocking it , use them with a priority as normal extractor vs porn extractor

@yan12125
Copy link
Collaborator

yan12125 commented Nov 6, 2016

Not quite sure what you want. Anyway IRC is a better place for discussions about youtube-dl usages

@siddht4
Copy link
Author

siddht4 commented Nov 6, 2016

well dump meant the extractor built for porn sites .
priority:
below 18 -> normal
above 18 > porn

@yan12125
Copy link
Collaborator

yan12125 commented Nov 6, 2016

You can get a list of extractors by search "age_limit": https://github.com/rg3/youtube-dl/search?utf8=%E2%9C%93&q=age_limit&type=Code

If you want to block normal videos, try --match-filter "age_limit >= 18"

@siddht4
Copy link
Author

siddht4 commented Nov 8, 2016

i just noticed there is gh-pages , download-server,rtmp_test , these branches are inside youtube-dl and no way connected to the youtube-dl python project. whats the purpose

@siddht4
Copy link
Author

siddht4 commented Nov 8, 2016

got the previous using find . -name "*.py" | xargs grep -E 'age_limit' command

@yan12125
Copy link
Collaborator

yan12125 commented Nov 8, 2016

gh-pages: Google it!
download-server: for yt-dl.org
rtmp_test: was for #1601, which has been landed, so it should be deleted. Dunno why it's still there

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants