我在我的应用程序中播放视频时遇到问题。基本上我想要做的是直接链接到视频,如:www.embed.videotube.com/player/?id=431436[...].mp4
来自:http://embed.videotube.com/player/?id=431436
。我看过一些网站,如 www.videotools.12pings.net,它们会获得正确的链接。
在没有适当 API 的情况下,是否有任何选择如何应对?(例如:youtube 的 api)
点击视频拇指后:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.embed.videotube.com/player/?id=431436[...].mp4"));
myContext.startActivity(intent);