问题描述
我已安装 Ubuntu 14.04,但在实例化 MediaPlayer 时出现错误.
I have installed Ubuntu 14.04 and i'm getting an error when i instantiate a MediaPlayer.
package mediatest;
import java.io.File;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;
import javafx.stage.Stage;
/**
*
* @author DESARROLLO
*/
public class MediaTest extends Application {
@Override
public void start(Stage primaryStage) {
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Media media = new Media(new File("rotate.mp4").toURI().toASCIIString());
MediaPlayer player = new MediaPlayer(media);
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
问题是当我创建 MediaPlayer 时:
The problem is when i create the MediaPlayer:
Media media = new Media(new File("rotate.mp4").toURI().toASCIIString());
MediaPlayer player = new MediaPlayer(media);
异常信息:
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 javafxapplication2.FXMLDocumentController.handleButtonAction(FXMLDocumentController.java:34)
我已经安装了 ubuntu-restricted-extras,以及显示 mp4 视频所需的所有编解码器.当我用 Vlc 或其他播放器播放视频时,没有问题.
I have already installed ubuntu-restricted-extras, and all codecs needed to display mp4 videos.When i play the video with Vlc or other player, there is no problem.
这可能是 Ubuntu 14.04 中的 JavaFx 问题吗?
May it be a JavaFx issue in Ubuntu 14.04?
我已经尝试过 jre-1.8
I have tried with jre-1.8
推荐答案
我在 Ubuntu 14.04 上遇到了同样的问题,似乎 jdk 8 附带的最新版本的 javaFx 无法识别 libavcodec54(附带Ubuntu 14.04)
I had the same issue on Ubuntu 14.04, it seems that the latest version of javaFx which comes with the jdk 8 doesn't recognize libavcodec54 (which comes shipped with Ubuntu 14.04)
要能够使用视频:从 Oracle 网站安装最新版本的 oracle (8u40).
To be able to use video: Install the latest version of oracle (8u40) from the Oracle website.
步骤:
解压文件到/usr/lib/jvm
Decompress the file to /usr/lib/jvm
tar -xvf jdk-8u40-linux-[arch_type].tar.gz
mv jdk-8u40/usr/lib/jvm
tar -xvf jdk-8u40-linux-[arch_type].tar.gz
mv jdk-8u40 /usr/lib/jvm
设置当前 java 版本:
Set the current java version with:
update-alternatives --config java
update-alternatives --config javac
update-alternatives --config java
update-alternatives --config javac
要查看有关该错误的更多详细信息,请参阅:https://bugs.openjdk.java.net/browse/JDK-8094633
To see more details on the bug see: https://bugs.openjdk.java.net/browse/JDK-8094633
这篇关于JavaFx MediaPlayer“无法创建播放器!"Ubuntu 14.04 中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!