Android 应用程序和视频流

发布于 2025-01-02 10:58:46 字数 53 浏览 1 评论 0原文

我的网站上有一个 avi 视频,我希望我的用户应用程序可以在流媒体中看到它。我该怎么办?谢谢

I have on my website an avi video and I would like that my users application could see it in streaming. How can I do? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2025-01-09 10:58:46

您还可以通过以下方法启动外部视频播放器进行流式传输。它将显示可用视频播放器的列表,可以选择自己选择的任何播放器。

private static void executeIntentForplayVideo(String localPath,
        LTDCommonData ltdCommonData, final Context activity) {

    final Intent intent = new Intent();
    intent.setAction(android.content.Intent.ACTION_VIEW);
    // Stream from remote path
    intent.setDataAndType(Uri.parse(finalPath), "video/*");
    //play from sd-card
    // intent.setDataAndType(Uri.fromFile(file), "video/*");
    try {
        List<ResolveInfo> intents = activity.getPackageManager()
        .queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
        if (intents != null && intents.size() > 0) {

            activity.startActivity(intent);

        } else {
            Toast toast = Toast.makeText(activity,"Please download a video player" , Toast.LENGTH_SHORT);
            toast.show();

        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

You can also launch external Video player through following method for streaming. It will display a list of Available video players, can select any player of his own choice.

private static void executeIntentForplayVideo(String localPath,
        LTDCommonData ltdCommonData, final Context activity) {

    final Intent intent = new Intent();
    intent.setAction(android.content.Intent.ACTION_VIEW);
    // Stream from remote path
    intent.setDataAndType(Uri.parse(finalPath), "video/*");
    //play from sd-card
    // intent.setDataAndType(Uri.fromFile(file), "video/*");
    try {
        List<ResolveInfo> intents = activity.getPackageManager()
        .queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
        if (intents != null && intents.size() > 0) {

            activity.startActivity(intent);

        } else {
            Toast toast = Toast.makeText(activity,"Please download a video player" , Toast.LENGTH_SHORT);
            toast.show();

        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文