-
Notifications
You must be signed in to change notification settings - Fork 449
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
Extract stream and search meta info for YouTube #451
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why List<MetaInfo>
? Will it ever happen that there is more than one meta info?
Wouldn't MetaInfo
s texts always be in English? They would then be useless for people who don't speak english
extractor/src/test/java/org/schabi/newpipe/extractor/services/DefaultStreamExtractorTest.java
Outdated
Show resolved
Hide resolved
It is possible that there are multiple info banners. E.g. I have seen that in a video about corona which was produced by a public broadcaster.
yes |
In the current extractor version, yes. If we do requests in another language, it will be in that language. |
daa6e98
to
7def8d8
Compare
Tests should be good now. I also added a few |
5a0dc24
to
f3764c5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks mostly good, I just pointed out some small issues ;-)
extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java
Outdated
Show resolved
Hide resolved
extractor/src/test/java/org/schabi/newpipe/extractor/services/DefaultSearchExtractorTest.java
Show resolved
Hide resolved
extractor/src/test/java/org/schabi/newpipe/extractor/services/DefaultStreamExtractorTest.java
Show resolved
Hide resolved
extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java
Outdated
Show resolved
Hide resolved
extractor/src/main/java/org/schabi/newpipe/extractor/stream/StreamExtractor.java
Outdated
Show resolved
Hide resolved
extractor/src/main/java/org/schabi/newpipe/extractor/MetaInfo.java
Outdated
Show resolved
Hide resolved
extractor/src/test/java/org/schabi/newpipe/extractor/services/DefaultSearchExtractorTest.java
Outdated
Show resolved
Hide resolved
extractor/src/test/java/org/schabi/newpipe/extractor/services/DefaultStreamExtractorTest.java
Outdated
Show resolved
Hide resolved
79b5aa9
to
31a6fe1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Basically ready
...st/java/org/schabi/newpipe/extractor/services/youtube/search/YoutubeSearchExtractorTest.java
Outdated
Show resolved
Hide resolved
extractor/src/main/java/org/schabi/newpipe/extractor/stream/StreamExtractor.java
Outdated
Show resolved
Hide resolved
Add method to extract Google webcache URLs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you :-D
Extract stream and search query meta data info which is provided by the service.
The meta info in distributed in two formats:
ToDo