gpt4 book ai didi

javafx - 在 Raspberry Pi 上使用 JavaFX 播放视频

转载 作者:行者123 更新时间:2023-12-01 06:06:26 25 4
gpt4 key购买 nike

我需要在 Raspberry Pi (RASPBIAN JESSIE) 上运行 JavaFX 项目。该项目包括 WebView 和 MediaView/MediaPlayer 的使用。由于 Oracle 在 ARM 平台上不支持 JavaFX,我尝试了 Gluon (JavaFX Embedded SDK 8.60.8) 的 JavaFX 端口。 WebView 几乎完美运行。但是,当我想使用 MediaPlayer/MediaView 播放视频时,出现异常:

Error in GstPipelineFactory: can't find element for factory named qtdemux
Exception in Application start method
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$156(LauncherImpl.java:182)
at java.lang.Thread.run(Thread.java:745)
Caused by: MediaException: UNKNOWN : com.sun.media.jfxmedia.MediaException: Could not create player! : com.sun.media.jfxmedia.MediaException: Could not create player!
at javafx.scene.media.MediaException.exceptionToMediaException(MediaException.java:146)
at javafx.scene.media.MediaPlayer.init(MediaPlayer.java:511)
at javafx.scene.media.MediaPlayer.<init>(MediaPlayer.java:414)
at zirro.App.start(App.java:21)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$163(LauncherImpl.java:863)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$176(PlatformImpl.java:326)
at com.sun.javafx.application.PlatformImpl.lambda$null$174(PlatformImpl.java:295)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$175(PlatformImpl.java:294)
at com.sun.glass.ui.monocle.RunnableProcessor.runLoop(RunnableProcessor.java:92)
at com.sun.glass.ui.monocle.RunnableProcessor.run(RunnableProcessor.java:51)
... 1 more
Caused by: com.sun.media.jfxmedia.MediaException: Could not create player!
at com.sun.media.jfxmediaimpl.NativeMediaManager.getPlayer(NativeMediaManager.java:224)
at com.sun.media.jfxmedia.MediaManager.getPlayer(MediaManager.java:104)
at javafx.scene.media.MediaPlayer.init(MediaPlayer.java:467)
... 10 more

任何想法如何在 Raspberry Pi 上成功运行带有 WebView 和 MediaView/MediaPlayer 的 JavaFX 应用程序?

最佳答案

WebView 和 Media 从来都不是 JavaFX ARM 发行版的一部分,但 Gluon 最近将其添加到嵌入式 SDK 中,可从 here 下载。并安装了最新的 JDK for ARM,可用 here .

媒体需要一些额外的步骤,因为它依赖于通常未完全安装在常规 Jessie 发行版上的 native 驱动程序。

首先安装这些驱动程序:

sudo apt-get install gstreamer0.10-plugins-good
sudo apt-get install gstreamer0.10-plugins-bad

现在编辑 /etc/apt/sources.list并在最后添加:
deb http://ftp.uk.debian.org/debian/ wheezy main
deb-src http://ftp.uk.debian.org/debian/ wheezy main

保存文件(Ctrl+O、Ctrl+X)。

最后更新并安装驱动程序:
sudo apt-get update
sudo apt-get install gstreamer0.10-ffmpeg
sudo apt-get install gstreamer0.10-alsa

现在您可以尝试再次运行您的 JavaFX 应用程序。

如果您再次发现相同的异常 ( MediaException: UNKNOWN ),请检查它是否显示此消息: Error in GstPipelineFactory ,注意缺少的驱动程序,并尝试安装它。

关于javafx - 在 Raspberry Pi 上使用 JavaFX 播放视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38376764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com