Created
April 11, 2022 14:18
-
-
Save Neoklosch/ecbc44f687c61f945e7aa3f62640fd31 to your computer and use it in GitHub Desktop.
ffmpeg streaming
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 -re \ | |
-i <filename>.mp4 \ | |
-pix_fmt yuvj420p \ | |
-x264-params keyint=48:min-keyint=48:scenecut=-1 \ | |
-b:v 4500k \ | |
-b:a 128k \ | |
-ar 44100 \ | |
-acodec aac \ | |
-vcodec libx264 \ | |
-preset medium \ | |
-crf 28 \ | |
-threads 4 \ | |
-f flv \ | |
rtmp://<address> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment