Created
February 3, 2017 09:17
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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