Created
November 30, 2021 02:20
-
-
Save hanford/407bc2b8c3329c221dc7984ba1c7411d to your computer and use it in GitHub Desktop.
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
Record with timer: | |
ffmpeg -f avfoundation -s 1280x720 -i "1:0" -vf "drawtext=fontfile=/Users/hanford/Hellix-Black.otf:text='%{pts\:gmtime\:0\:%M\\\\\:%S}':fontcolor=white@1:borderw=8:bordercolor=black:x=w-tw-192:y=h-th-192:fontsize=230" no-bun-startup.mkv | |
crop video in two (left/right) parts: | |
ffmpeg -i bun-page.mp4 -filter_complex "[0]crop=iw/2:ih:0:0[left];[0]crop=iw/2:ih:ow:0[right]" -map "[left]" left.mp4 -map "[right]" right.mp4 | |
Convert video from mkv to mp4 | |
ffmpeg -i np-page.mkv -pix_fmt yuv420p np-page.mp4 | |
Combine two videos into one side by side | |
ffmpeg -i right2.mp4 -i right.mp4 -filter_complex hstack out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment