Skip to content

Instantly share code, notes, and snippets.

@kmindi
Created February 3, 2017 09:17
Show Gist options
  • Select an option

  • Save kmindi/e198388f4467253e856b357088a725b6 to your computer and use it in GitHub Desktop.

Select an option

Save kmindi/e198388f4467253e856b357088a725b6 to your computer and use it in GitHub Desktop.
ffmpeg commandline/shell to convert a video to a playable format (h264, yuf420, <= 1920x180) in JavaFX MediaPlayer/MediaView
ffmpeg -i input.mp4 -vcodec h264 -vf scale=1920x1080 -an -pix_fmt yuv420p output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment