Inspired by YTVimeoExtractor for iOS.
Add to project
To use this library, simply add JitPack as a repository source in your build.gradle
at the end of the repositories section:
repositories {
// ...
maven {
url "https://jitpack.io"
}
}
Step 2: Add the dependency to your dependency list and replace ending with latest version
dependencies {
// ...
compile 'com.github.ed-george:AndroidVimeoExtractor:<latest-version>'
}
That's it! NOTE: To get the latest version visit this link
Usage
Requires Minimum SDK 9 - Android 2.3
Video information can be extracted from an identifier:
VimeoExtractor.getInstance().fetchVideoWithIdentifier("1234", null, new OnVimeoExtractionListener() {
@Override
public void onSuccess(VimeoVideo video) {
String hdStream = video.getStreams().get("1080p");
//...
}
@Override
public void onFailure(Throwable throwable) {
//Error handling here
}
}
);
Or alternatively from a full video url:
VimeoExtractor.getInstance().fetchVideoWithURL("https://vimeo.com/1234", null, new OnVimeoExtractionListener() {
@Override
public void onSuccess(VimeoVideo video) {
String hdStream = video.getStreams().get("1080p");
//...
}
@Override
public void onFailure(Throwable throwable) {
//Error handling here
}
}
);
Please build and read the documentation for a better oversight of the information available from each video.
Private Videos
When requesting information on private videos - pass the referrer parameter as null
, this will ensure the default header is sent and should avoid any HTTP 403 Forbidden errors.
License
The MIT License (MIT) Copyright (c) 2016 Ed George Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Finally...
This library is in no way associated with Vimeo. Please only use this library at your own risk after accepting and acknowledging the Vimeo Terms of Service.