在ExoPlayer中播放SMB mp4文件

时间:2018-11-15 16:16:14

标签: java android exoplayer smb

我不知道是否有可能...但是我想在本地网络上将mp4文件播放到Android ExoPlayer中... 我在网上搜索了很多东西,但没有找到任何东西...

文件位于以下位置:smb://192.168.x.x/file.mp4

我尝试使用此代码:

String file = "smb://192.168.x.x/file.mp4";
                                                                        //self is my context
DefaultDataSourceFactory dataSourceFactory = new DefaultDataSourceFactory(self, null, new DefaultBandwidthMeter());
ExtractorMediaSource mediaSource = new ExtractorMediaSource.Factory(dataSourceFactory).createMediaSource(Uri.parse(file));
player.prepare(mediaSource);

但是我从ExoPlayer收到运行时错误...也许是因为我未通过身份验证?

我不诚实,希望有人可以帮助我...

0 个答案:

没有答案