Google TV 不支持 MP4 视频格式

发布于 2025-01-06 02:25:57 字数 785 浏览 1 评论 0原文

我正在开发一个Google TV应用程序,我已经从服务器下载了一个mp4格式的视频并存储在应用程序数据中。我尝试从视频视图中在 Google TV 内播放该视频,但它显示类似“无法播放视频”的警告。

同一应用程序在平板电脑和手机中正常运行,但在 Google TV 模拟器和电视设备中无法运行。

视频我正在下载从此链接并存储在应用程序缓存中第二个视频.mp4。

                File clip=new File(getCacheDir(),"secondvideo.mp4");
                if(clip.exists()){
                    video.setVideoPath(clip.getAbsolutePath());


                      video.setMediaController(null);
                      video.requestFocus();
                      video.postInvalidateDelayed(100);
                      video.start();
                      flag=true;
                }
            }else{


            }

I am developing a Google TV application, and I have downloaded a mp4 format video from the server and stored in app data. I am trying to play that video inside the Google TV from video view, but it showing the alert like "Can not play the Video".

The same application working properly in Tablet and mobiles but not working in Google TV emulator and TV device.

Video I am downloading from this link and storing in application cache memory as secondvideo.mp4.

                File clip=new File(getCacheDir(),"secondvideo.mp4");
                if(clip.exists()){
                    video.setVideoPath(clip.getAbsolutePath());


                      video.setMediaController(null);
                      video.requestFocus();
                      video.postInvalidateDelayed(100);
                      video.start();
                      flag=true;
                }
            }else{


            }

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

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

发布评论

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

评论(1

∞琼窗梦回ˉ 2025-01-13 02:25:57

视频在模拟器中效果不佳。
梅加和达尔给了你正确的建议。但如果仍有问题,您可以找到 https://developers.google.com /tv/android/docs/gtv_media_formats 有帮助。

Dar 提到的我编写的示例代码也是一个值得一看的地方:https:// code.google.com/p/googletv-video-player/

您的视频网址已失效(Megha 指出的 404),因此我无法对其进行审核。

Video doesn't work well in the emulator.
Megha and Dar have given you the right advice. But in case there is still a question you'll find https://developers.google.com/tv/android/docs/gtv_media_formats helpful.

Dar's mention of the sample code I wrote is also a good place to look: https://code.google.com/p/googletv-video-player/

Your video URL has gone dead (404 as Megha pointed out), so I'm not able to review it.

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