Skip to content

Instantly share code, notes, and snippets.

View carterpeel's full-sized avatar
📈
O(logn) enthusiast

Carter carterpeel

📈
O(logn) enthusiast
  • Grand Rapids, Michigan
  • 02:01 (UTC -04:00)
View GitHub Profile
@carterpeel
carterpeel / Video.java
Created October 31, 2020 01:56 — forked from idear1203/Video.java
Play .mp4 video using Java MediaPlayer for 5 seconds. After that, the video will be closed.
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.beans.property.DoubleProperty;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.media.Media;
import javafx.scene.media.MediaView;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import javafx.util.Duration;