Skip to content

Latest commit

 

History

History
63 lines (47 loc) · 1.18 KB

File metadata and controls

63 lines (47 loc) · 1.18 KB

VimeoExtractor

Vimeo Url Extractor Download Videos Android based Vimeo url extractor

These are the urls to the Vimeo Video file, so you can stream or download them.

  • Builds: JitPack

Gradle

To always build from the latest commit with all updates. Add the JitPack repository:

repositories {
    maven { url "https://jitpack.io" }
}

And the dependency:

dependencies 
 {
    implementation 'com.github.Ashusolanki:TwitterUrlExtractor:0.0.1'
 }

Usage

#VimeoExtractor


        new VimeoExtractor()
        {
            @Override
            protected void onExtractionComplete(ArrayList<VimeoFile> vimeoFileArrayList) 
            {
              //complete
            }
            @Override
            protected void onExtractionFail(String Error) 
            {
              /fail
            }
        }.Extractor(this.getActivity(), videoURL);
        

#VimeoFile

    getQuality();
    getUrl();
    getExt();
    getFilename();
    getAuthor();
    getSize();
    getDuration();