作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序中已经运行了 ExoPlayer 2.7.2
。我想为其添加 Cast 功能。如何使用 ExoPlayer Cast 扩展将我的原版 ExoPlayer
更改为 CastPlayer
?
最佳答案
有一个demo app for cast in the ExoPlayer repository在 Github 上,它创建了一个 CastPlayer,如下所示:
// set up the cast player
castPlayer = new CastPlayer(castContext);
castPlayer.addListener(this);
castPlayer.setSessionAvailabilityListener(this);
// set to a PlayerView for controls
castControlView.setPlayer(castPlayer);
鉴于您的代码是针对 Player
接口(interface)编写的,您可以将本地 Player 与 CastPlayer
实例交换。
A blog post on Medium说明应用程序需要提供哪些铸件。
关于android - 如何从 ExoPlayer Cast 扩展创建 CastPlayer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49647511/
我确实有一个 HLS 直播,它由一个指向 list 文件的 URI 表示。 list 文件确实另外定义了字幕。 使用 ExoPlayer 时,我可以使用 TrackSelector,将其附加到 Exo
我的应用程序中已经运行了 ExoPlayer 2.7.2。我想为其添加 Cast 功能。如何使用 ExoPlayer Cast 扩展将我的原版 ExoPlayer 更改为 CastPlayer? 最佳
我是一名优秀的程序员,十分优秀!