Created
October 22, 2025 20:53
-
-
Save motebaya/643ea80f6157b5debff914be504bb313 to your computer and use it in GitHub Desktop.
ffffmmmmppppeggg force potrait , ok for reels.
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
| (async () => { | |
| await this.callIt({ | |
| type: "ffmpeg", | |
| args: [ | |
| "-y", | |
| "-hwaccel", | |
| "cuda", | |
| "-i", | |
| mediaFile, | |
| "-vf", | |
| "scale=w=1080:h=1920:force_original_aspect_ratio=decrease:flags=lanczos,pad=1080:1920:(ow-iw)/2:(oh-ih)/2:black", | |
| "-c:v", | |
| "h264_nvenc", | |
| "-preset", | |
| "p7", | |
| "-rc", | |
| "vbr_hq", | |
| "-cq", | |
| "19", | |
| "-b:v", | |
| "6M", | |
| "-maxrate", | |
| "8M", | |
| "-bufsize", | |
| "12M", | |
| "-profile:v", | |
| "high", | |
| "-level", | |
| "5.1", | |
| "-pix_fmt", | |
| "yuv420p", | |
| "-c:a", | |
| "aac", | |
| "-b:a", | |
| "160k", | |
| "-ar", | |
| "48000", | |
| output, | |
| ], | |
| }); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment