Я новичок в JavaFX, и во время учебы я застрял на показе видео и не могу его посмотреть, но что впечатляет, так это то, что звук продолжает воспроизводиться.
Вот мой код:
public class ExemploJavafx extends Application {
StackPane root;
Media theMedia;
MediaPlayer thePlayer;
MediaView theView;
@Override
public void start(Stage primaryStage) {
root = new StackPane();
try {
theMedia = new Media(new File("D:\\Download \\de.flv").toURI().toString());
thePlayer = new MediaPlayer(theMedia);
thePlayer.setAutoPlay(true);
theView = new MediaView();
theView.setFitHeight(100);
theView.setFitWidth(100);
theView.setMediaPlayer(thePlayer);
} catch (Exception e) {
e.printStackTrace();
}
root.getChildren().addAll(theView);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Media View");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Спасибо.