Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前在给定的 exoplayer 演示应用中,谷歌正在使用两个 exoplayer 来播放广告和视频。我在播放前贴片广告和插播广告时遇到视频重叠问题。因此,为了避免这种情况,我只想使用一个 exoplayer 来播放广告和视频。有没有人尝试过使用单个 exoplayer?
不只是使用 MediaSource,而是使用 mediaSourceWithAds 对象:
MediaSource mediaSourceWithAds = new AdsMediaSource(mediaSource, dataSourceFactory, imaAdsLoader, playerView.getOverlayFrameLayout(),null,null);
这应该这样做。