1

Hi I have this code for playing video inside JavaFX GridPane. The video is playing perfect, but it is not fit inside GridPane. So how to make it happen?

@FXML
private GridPane boxView;

private MediaPlayer player;
private MediaView view;
public void LoadVideo(String videoUrl) {
    URL url = getClass().getResource(videoUrl);
    final Media m = new Media(url.toString());
    this.player = new MediaPlayer(m);
    this.view = new MediaView(player);
    boxView.getChildren().add(view);
    boxView.setAlignment(Pos.CENTER);
    player.play();
}
TT.
  • 15,774
  • 6
  • 47
  • 88
boycod3
  • 5,033
  • 11
  • 58
  • 87

0 Answers0