Module javafx.media

Class MediaView

java.lang.Object
javafx.scene.Node
javafx.scene.media.MediaView
All Implemented Interfaces:
Styleable, EventTarget

public class MediaView extends Node
A Node that provides a view of Media being played by a MediaPlayer.

The following code snippet provides a simple example of an Application.start() method which displays a video:


 public void start(Stage stage) {
     // Create and set the Scene.
     Scene scene = new Scene(new Group(), 540, 209);
     stage.setScene(scene);

     // Name and display the Stage.
     stage.setTitle("Hello Media");
     stage.show();

     // Create the media source.
     String source = getParameters().getRaw().get(0);
     Media media = new Media(source);

     // Create the player and set to play automatically.
     MediaPlayer mediaPlayer = new MediaPlayer(media);
     mediaPlayer.setAutoPlay(true);

     // Create the view and add it to the Scene.
     MediaView mediaView = new MediaView(mediaPlayer);
     ((Group) scene.getRoot()).getChildren().add(mediaView);
 }
 
The foregoing code will display the video as:

Hello Media
Since:
JavaFX 2.0
  • Property Details Link icon

    • mediaPlayer Link icon

      public final ObjectProperty<MediaPlayer> mediaPlayerProperty
      The mediaPlayer whose output will be handled by this view. Setting this value does not affect the status of the MediaPlayer, e.g., if the MediaPlayer was playing prior to setting mediaPlayer then it will continue playing.
      See Also:
    • onError Link icon

      public final ObjectProperty<EventHandler<MediaErrorEvent>> onErrorProperty
      Event handler to be invoked whenever an error occurs on this MediaView.
      See Also:
    • preserveRatio Link icon

      public final BooleanProperty preserveRatioProperty
      Whether to preserve the aspect ratio (width / height) of the media when scaling it to fit the node. If the aspect ratio is not preserved, the media will be stretched or sheared in both dimensions to fit the dimensions of the node. The default value is true.
      See Also:
    • smooth Link icon

      public final BooleanProperty smoothProperty
      If set to true a better quality filtering algorithm will be used when scaling this video to fit within the bounding box provided by fitWidth and fitHeight or when transforming. If set to false a faster but lesser quality filtering will be used. The default value depends on platform configuration.
      See Also:
    • x Link icon

      public final DoubleProperty xProperty
      Defines the current x coordinate of the MediaView origin.
      See Also:
    • y Link icon

      public final DoubleProperty yProperty
      Defines the current y coordinate of the MediaView origin.
      See Also:
    • fitWidth Link icon

      public final DoubleProperty fitWidthProperty
      Determines the width of the bounding box within which the source media is resized as necessary to fit. If value ≤ 0, then the width of the bounding box will be set to the natural width of the media, but fitWidth will be set to the supplied parameter, even if non-positive.

      See preserveRatio for information on interaction between media views fitWidth, fitHeight and preserveRatio attributes.

      See Also:
    • fitHeight Link icon

      public final DoubleProperty fitHeightProperty
      Determines the height of the bounding box within which the source media is resized as necessary to fit. If value ≤ 0, then the height of the bounding box will be set to the natural height of the media, but fitHeight will be set to the supplied parameter, even if non-positive.

      See preserveRatio for information on interaction between media views fitWidth, fitHeight and preserveRatio attributes.

      See Also:
    • viewport Link icon

      public final ObjectProperty<Rectangle2D> viewportProperty
      Specifies a rectangular viewport into the media frame. The viewport is a rectangle specified in the coordinates of the media frame. The resulting bounds prior to scaling will be the size of the viewport. The displayed image will include the intersection of the frame and the viewport. The viewport can exceed the size of the frame, but only the intersection will be displayed. Setting viewport to null will clear the viewport.
      See Also:
  • Constructor Details Link icon

    • MediaView Link icon

      public MediaView()
      Creates a MediaView instance with no associated MediaPlayer.
    • MediaView Link icon

      public MediaView(MediaPlayer mediaPlayer)
      Creates a MediaView instance associated with the specified MediaPlayer. Equivalent to
      
       MediaPlayer player; // initialization omitted
       MediaView view = new MediaView();
       view.setMediaPlayer(player);
       
      Parameters:
      mediaPlayer - the MediaPlayer the playback of which is to be viewed via this class.
  • Method Details Link icon

    • setMediaPlayer Link icon

      public final void setMediaPlayer(MediaPlayer value)
      Sets the MediaPlayer whose output will be handled by this view.
      Parameters:
      value - the associated MediaPlayer.
    • getMediaPlayer Link icon

      public final MediaPlayer getMediaPlayer()
      Retrieves the MediaPlayer whose output is being handled by this view.
      Returns:
      the associated MediaPlayer.
    • mediaPlayerProperty Link icon

      public final ObjectProperty<MediaPlayer> mediaPlayerProperty()
      The mediaPlayer whose output will be handled by this view. Setting this value does not affect the status of the MediaPlayer, e.g., if the MediaPlayer was playing prior to setting mediaPlayer then it will continue playing.
      Returns:
      the mediaPlayer property
      See Also:
    • setOnError Link icon

      public final void setOnError(EventHandler<MediaErrorEvent> value)
      Sets the error event handler.
      Parameters:
      value - the error event handler.
    • getOnError Link icon

      public final EventHandler<MediaErrorEvent> getOnError()
      Retrieves the error event handler.
      Returns:
      the error event handler.
    • onErrorProperty Link icon

      public final ObjectProperty<EventHandler<MediaErrorEvent>> onErrorProperty()
      Event handler to be invoked whenever an error occurs on this MediaView.
      Returns:
      the onError property
      See Also:
    • setPreserveRatio Link icon

      public final void setPreserveRatio(boolean value)
      Sets whether to preserve the media aspect ratio when scaling.
      Parameters:
      value - whether to preserve the media aspect ratio.
    • isPreserveRatio Link icon

      public final boolean isPreserveRatio()
      Returns whether the media aspect ratio is preserved when scaling.
      Returns:
      whether the media aspect ratio is preserved.
    • preserveRatioProperty Link icon

      public final BooleanProperty preserveRatioProperty()
      Whether to preserve the aspect ratio (width / height) of the media when scaling it to fit the node. If the aspect ratio is not preserved, the media will be stretched or sheared in both dimensions to fit the dimensions of the node. The default value is true.
      Returns:
      the preserveRatio property
      See Also:
    • setSmooth Link icon

      public final void setSmooth(boolean value)
      Sets whether to smooth the media when scaling.
      Parameters:
      value - whether to smooth the media.
    • isSmooth Link icon

      public final boolean isSmooth()
      Returns whether to smooth the media when scaling.
      Returns:
      whether to smooth the media
    • smoothProperty Link icon

      public final BooleanProperty smoothProperty()
      If set to true a better quality filtering algorithm will be used when scaling this video to fit within the bounding box provided by fitWidth and fitHeight or when transforming. If set to false a faster but lesser quality filtering will be used. The default value depends on platform configuration.
      Returns:
      the smooth property
      See Also:
    • setX Link icon

      public final void setX(double value)
      Sets the x coordinate of the MediaView origin.
      Parameters:
      value - the x coordinate of the origin of the view.
    • getX Link icon

      public final double getX()
      Retrieves the x coordinate of the MediaView origin.
      Returns:
      the x coordinate of the origin of the view.
    • xProperty Link icon

      public final DoubleProperty xProperty()
      Defines the current x coordinate of the MediaView origin.
      Returns:
      the x property
      See Also:
    • setY Link icon

      public final void setY(double value)
      Sets the y coordinate of the MediaView origin.
      Parameters:
      value - the y coordinate of the origin of the view.
    • getY Link icon

      public final double getY()
      Retrieves the y coordinate of the MediaView origin.
      Returns:
      the y coordinate of the origin of the view.
    • yProperty Link icon

      public final DoubleProperty yProperty()
      Defines the current y coordinate of the MediaView origin.
      Returns:
      the y property
      See Also:
    • setFitWidth Link icon

      public final void setFitWidth(double value)
      Sets the width of the bounding box of the resized media.
      Parameters:
      value - the width of the resized media.
    • getFitWidth Link icon

      public final double getFitWidth()
      Retrieves the width of the bounding box of the resized media.
      Returns:
      the height of the resized media.
    • fitWidthProperty Link icon

      public final DoubleProperty fitWidthProperty()
      Determines the width of the bounding box within which the source media is resized as necessary to fit. If value ≤ 0, then the width of the bounding box will be set to the natural width of the media, but fitWidth will be set to the supplied parameter, even if non-positive.

      See preserveRatio for information on interaction between media views fitWidth, fitHeight and preserveRatio attributes.

      Returns:
      the fitWidth property
      See Also:
    • setFitHeight Link icon

      public final void setFitHeight(double value)
      Sets the height of the bounding box of the resized media.
      Parameters:
      value - the height of the resized media.
    • getFitHeight Link icon

      public final double getFitHeight()
      Retrieves the height of the bounding box of the resized media.
      Returns:
      the height of the resized media.
    • fitHeightProperty Link icon

      public final DoubleProperty fitHeightProperty()
      Determines the height of the bounding box within which the source media is resized as necessary to fit. If value ≤ 0, then the height of the bounding box will be set to the natural height of the media, but fitHeight will be set to the supplied parameter, even if non-positive.

      See preserveRatio for information on interaction between media views fitWidth, fitHeight and preserveRatio attributes.

      Returns:
      the fitHeight property
      See Also:
    • setViewport Link icon

      public final void setViewport(Rectangle2D value)
      Sets the rectangular viewport into the media frame.
      Parameters:
      value - the rectangular viewport.
    • getViewport Link icon

      public final Rectangle2D getViewport()
      Retrieves the rectangular viewport into the media frame.
      Returns:
      the rectangular viewport.
    • viewportProperty Link icon

      public final ObjectProperty<Rectangle2D> viewportProperty()
      Specifies a rectangular viewport into the media frame. The viewport is a rectangle specified in the coordinates of the media frame. The resulting bounds prior to scaling will be the size of the viewport. The displayed image will include the intersection of the frame and the viewport. The viewport can exceed the size of the frame, but only the intersection will be displayed. Setting viewport to null will clear the viewport.
      Returns:
      the viewport property
      See Also: