MediaSource videoSource; if (uri.getPath().endsWith("m3u8")) { // hls链接 videoSource = new HlsMediaSource.Factory(factory) .createMediaSource(videoItem); } else if (uri.getPath().startsWith("rtsp")) { // rtsp链接 videoSource = new RtspMediaSource.Factory() .createMediaSource(videoI...
1.封装了 exoplayer ijkplayer mediaplayer的视频播放器;2.实现视频边下边播功能;3.实现HLS M3U8视频边下边播功能; - FoxNick/MediaSDK
// 播放视频privatevoidplayVideo(Uri uri){DataSource.Factory factory=newDefaultDataSource.Factory(this);// 创建指定地址的媒体对象MediaItem videoItem=newMediaItem.Builder().setUri(uri).build();// 基于工厂对象和媒体对象创建媒体来源MediaSource videoSource;if(uri.getPath().endsWith("m3u8")){// hls...
// 播放视频privatevoidplayVideo(Uri uri){DataSource.Factory factory=newDefaultDataSource.Factory(this);// 创建指定地址的媒体对象MediaItem videoItem=newMediaItem.Builder().setUri(uri).build();// 基于工厂对象和媒体对象创建媒体来源MediaSource videoSource;if(uri.getPath().endsWith("m3u8")){// hls...
if (uri.getPath().endsWith("m3u8")) { // hls链接 videoSource = new HlsMediaSource.Factory(factory) .createMediaSource(videoItem); } else if (uri.getPath().startsWith("rtsp")) { // rtsp链接 videoSource = new RtspMediaSource.Factory() ...
Factory factory = new DefaultDataSource.Factory(this); // 创建指定地址的媒体对象 MediaItem videoItem = new MediaItem.Builder().setUri(uri).build(); // 基于工厂对象和媒体对象创建媒体来源 MediaSource videoSource; if (uri.getPath().endsWith("m3u8")) { // hls链接 videoSource = new Hls...
Factory factory = new DefaultDataSource.Factory(this); // 创建指定地址的媒体对象 MediaItem videoItem = new MediaItem.Builder().setUri(uri).build(); // 基于工厂对象和媒体对象创建媒体来源 MediaSource videoSource; if (uri.getPath().endsWith("m3u8")) { // hls链接 videoSource = new Hls...
if (uri.getPath().endsWith("m3u8")) { // hls链接 videoSource = new HlsMediaSource.Factory(factory) .createMediaSource(videoItem); } else if (uri.getPath().startsWith("rtsp")) { // rtsp链接 videoSource = new RtspMediaSource.Factory() ...
DataSource.Factoryfactory=newDefaultDataSource.Factory(this);// 创建指定地址的媒体对象MediaItem videoItem =newMediaItem.Builder().setUri(uri).build();// 基于工厂对象和媒体对象创建媒体来源MediaSource videoSource;if(uri.getPath().endsWith("m3u8")) {// hls链接videoSource =newHlsMediaSource.Factory...
1.封装了 exoplayer ijkplayer mediaplayer的视频播放器;2.实现视频边下边播功能;3.实现HLS M3U8视频边下边播功能; - hiliving/MediaSDK