VideoViewでCan't this play video
VideoViewを用いてネット上にある動画の再生を試みています。
しかし、実行したところ"Can't this play video."と警告文が出て再生できません。
AndroidManifestにインターネット接続許可の文は付け加えています。
以下、VideoViewにUrlをセットし、再生を試みている部分のコードです。
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
val view = inflater.inflate(R.layout.fragment_live_streaming, container, false)
val afterGameLivestreaming: VideoView = view.findViewById(R.id.after_game_live)
afterGameLivestreaming.setVideoURI(Uri.parse("https://www.youtube.com/watch?v=EaJHJK6Vzqg&t=1916s"))
afterGameLivestreaming.start()
return view
}
どうか、どなたかご教授よろしくお願いいたします。