我们从 vimeo 的付费服务中获得的支持真的很痛苦,他们对特定或流行用例的文档非常不清楚。我确实设法实现了我的用例,但不确定这是否是最佳实践。我将尽可能详细地描述体验:
- 我们从 Vimeo Plus 转移到 Vimeo Pro 帐户(因为没有 Pro 帐户,甚至没有人可以从 api 访问 vimeo GET api 或视频文件访问,这是必须的)
- 对于我们的网站用例,我们已经从 vimeo 隐藏了私人视频,并且只允许将其嵌入我们的网站(尽管如果有人检查网络,他可以在任何地方使用服务器响应的带有有限时间令牌的 html 短时间)
- 对于 Android 用例,因为它是无浏览器的,我们遵循https://github.com/vimeo/vimeo-networking-java并为此使用硬编码的访问令牌并在 exoplayer 中播放(因为我必须稍后加密它或者我有在使用 Oauth 播放视频时, 为在有限时间内动态获取访问令牌进行更多研究. 但问题是文档非常不清楚, 它甚至没有正确说明不同令牌的生命周期, 只是说这取决于创建方式或范围)
编码:
confBuilder = new Configuration.Builder(accessToken);
// this access token has public+private+video file access created in the vimeo account manually
configuration = confBuilder.build();
VimeoClient.initialize(configuration);
VimeoClient.getInstance().fetchContent(url, CacheControl.FORCE_NETWORK, new ModelCallback<Video>(Video.class){
//here url should be like "videos/{video_id}" otherwise it wasn't working whatever the url was
@Override
public void success(Video video) {
//progressBar.setVisibility(View.GONE);
if(video != null){
Play play = video.getPlay();
if (play != null) {
//in my case "play" was null, but here I should get the direct link to varioud resolution files
VideoFile dashFile = play.getDashVideoFile();
String dashLink = dashFile.getLink();
// load link
VideoFile hlsFile = play.getHlsVideoFile();
String hlsLink = hlsFile.getLink();
// load link
ArrayList<VideoFile> progressiveFiles = play.getProgressiveVideoFiles();
String linkToMp4File = progressiveFiles.get(0).getLink();
//loadVideo();
}
//I got the link from here
ArrayList<VideoFile> videoFiles = video.files;
if(videoFiles != null && !videoFiles.isEmpty()) {
VideoFile videoFile = videoFiles.get(0); // you could sort these files by size, fps, width/height
String link = videoFile.getLink();
finalLink = link;
// load link
RunExoplayerPlayerWithThisLink();
// but this is http link which will redirect to https link which u have to handle in exoplayer
}
}
}
@Override
public void failure(VimeoError error) {
progressBar.setVisibility(View.GONE);
Toast.makeText(getApplicationContext(), error.getMessage(), Toast.LENGTH_SHORT).show();
}
});
现在我必须在 exoplayer 中处理Http 到 Https redict 链接,默认情况下它在 exoplayer 中受到限制。所以你必须在 DefaultHttpDataSourceFactory 中将“allowCrossProtocolRedirects”设置为“true”,在 exoplayer 中播放视频时 MediaSource 将需要它:
DefaultHttpDataSourceFactory factory;
ExtractorsFactory extractorsFactory;
MediaSource mediaSource;
factory = new DefaultHttpDataSourceFactory("exoplayer_video",null, DefaultHttpDataSource.DEFAULT_CONNECT_TIMEOUT_MILLIS,DefaultHttpDataSource.DEFAULT_READ_TIMEOUT_MILLIS,true);
extractorsFactory = new DefaultExtractorsFactory();
mediaSource = new ExtractorMediaSource(videoUri, factory, extractorsFactory,null,null);
如果您认为这种方式可能会更好,特别是关于 access_token.specific 用户访问实现,请给我在这个主题中的任何建议,我认为这不可能完全可行。我只能在身份验证或从后端检查用户访问后发送链接。
但是仍然存在一个关于 Android 10平台(api 29)的问题,它不允许在当前版本的 Vimeo 网络库中使用有关“sslSocketFactory”的某些方法(原因:java.lang.IllegalStateException:无法提取信任Android10Platform 上的经理,sslSocketFactory 是 com.android.org.conscrypt.OpenSSLSocketFactoryImpl 类),我将在另一篇文章中询问(Android 10 平台的 Vimeo 网络库崩溃(api29))