Play a Youtube video using JavaFX

Update Oct 2021

I tried this solution again using JavaFX 17, it worked fine for me, which is kind of nice six years later.

Note that the video in the original example is no longer hosted on YouTube, but you would want to play a different video anyway.

To do so, just substitute the video id part of the url utUPth77L_o with the id of your video (which you can see in the url when you play it in YouTube).

Example URLs which worked in 2021:

The watch linked videos display the full YouTube site, the embed linked videos just display the YouTube player for the video.

YouTube does force some videos to be displayed on its site rather than using the embed link, so even if the video can be watched on YouTube via the watch URL, the embed link won’t always work, but the watch link should work OK in WebView for such cases.

Update Dec 4th 2015

Some versions of JavaFX 8 are unable to play back youtube video content. Currently, for instance, Java 8u66 cannot playback youtube video content, but Java 8u72 early access release can.

Background

General information on playing video in JavaFX is located in my answer to: Any simple (and up to date) Java frameworks for embedding movies. This answer just deals with embedding YouTube videos as that appears to be what the question asker is interested in.

Solution

JavaFX can play a YouTube video using a YouTube video URL if you supply the URL to a WebView rather than a MediaPlayer.

Considerations

If you just want the YouTube media player and not the whole related YouTube page, use the /embed location rather than the /watch location in the URL.

Only some videos can be embedded. For instance, you can’t embed the Katy Perry video because YouTube blocks it’s distribution in an embedded format (instead telling you to view the video on the YouTube site, where it is only provided through the YouTube Flash player).

Only videos which YouTube allow to play in their HTML5 player may be played in JavaFX. This is a pretty large percentage of YouTube videos. YouTube videos which only play in YouTube’s Flash player do not play in JavaFX.

Sample Application

The JavaFX application below plays a YouTube video advertisement for a piece of fruit.

fruit

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.WebView;
import javafx.stage.Stage;

public class VideoPlayer extends Application {    
  public static void main(String[] args) { launch(args); }

  @Override public void start(Stage stage) throws Exception {
    WebView webview = new WebView();
    webview.getEngine().load(
      "http://www.youtube.com/embed/utUPth77L_o?autoplay=1"
    );
    webview.setPrefSize(640, 390);

    stage.setScene(new Scene(webview));
    stage.show();
  }    
}

Leave a Comment