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

Commit

Permalink
Readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nhCoder committed Jan 7, 2020
1 parent 9f396a2 commit a6f2588
Showing 1 changed file with 21 additions and 28 deletions.
49 changes: 21 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,43 @@
# YouTubeExtractor

A Youtube urls extractor for java & android for streaming and downloading purpose.
YouTubeExtractor

_I made this on my Android Device using AIDE(IDE),
So i cant update gradle, so dont ask me_
A Youtube urls extractor for java & android for streaming and downloading purpose.

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

- 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)
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)

Usage

# Usage
Copy the classes or compile project.

Copy the classes or compile project.
.jar will be available soon

_.jar will be available soon_
Dependencies Used
• Gson
• Mozilla Rhino
• UniversalVideoView(Used only for video testing)

# Dependencies Used
Example

- Gson
- Mozilla Rhino
- UniversalVideView(Used only for video testing)


# Example


```
new YoutubeStreamExtractor(new YoutubeStreamExtractor.ExtractorListner(){
@Override
public void onExtractionDone(List<YoutubeMedia> adativeStream, final List<YoutubeMedia> muxedStream, YoutubeMeta meta) {
}
@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 method setHeaders

0 comments on commit a6f2588

Please sign in to comment.