Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nhCoder committed Jan 7, 2020
1 parent 1a93c05 commit da3ca21
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A Youtube urls extractor for java & android for streaming and downloading purpos

I made this on my Android Device using AIDE(IDE), So i cant update gradle, so dont ask me

Test Apk
[Test Apk](https://github.com/naveedhassan913/YouTubeExtractor/blob/master/YoutubeExtractor/app/build/bin/app.apk)

Features • Extracts Muxed and Adaptive urls separately • Extracts Signature Protected Videos(like vevo) • Extracts Live Videos Urls(hls) • Extracts video info(title,author,description,view,etc) • Extracts Age restricted videos (Uses Cookie from a Google account)

Expand All @@ -18,18 +18,21 @@ Dependencies Used • Gson • Mozilla Rhino • UniversalVideoView(Used only fo

Example

```
new YoutubeStreamExtractor(new YoutubeStreamExtractor.ExtractorListner(){
@Override
public void onExtractionDone(List adativeStream, final List muxedStream, YoutubeMeta meta) {
@Override
public void onExtractionDone(List adativeStream, final List muxedStream, YoutubeMeta meta) {
}
@Override
public void onExtractionGoesWrong(final ExtractorException e) {
}
}).Extract(YOUTUBE_ID / LINK);
```

}
@Override
public void onExtractionGoesWrong(final ExtractorException e) {
}
}).Extract(YOUTUBE_ID / LINK);



For age restricted Videos

For extraction of age restricted videos use useDefaultLogin() to Use default cookie.. OR YOU CAN override with your own cookies by using method setHeaders
For extraction of age restricted videos use `useDefaultLogin()` to Use default cookie.. OR YOU CAN override with your own cookies by method `setHeaders`

0 comments on commit da3ca21

Please sign in to comment.