Guest User

Untitled

a guest
May 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #fucking powershell
  2.  
  3. Param(
  4. [Parameter(Mandatory=$True,Position=1)]
  5. [string]$inp,
  6. [Parameter(Mandatory=$True,Position=2)]
  7. [string]$output
  8. )
  9.  
  10. ffmpeg -hwaccel_device 0 -hwaccel cuvid -hwaccel_output_format cuda -c:v h264_cuvid -i $inp -c:v h264_nvenc -preset:v slow -profile:v high -qp 30 -rc-lookahead 38 -b:v 12M -maxrate 13M -g 30 -bf 2 -coder cabac -pixel_format yuv420p -c:a aac -b:a 384k -movflags +faststart $output
Add Comment
Please, Sign In to add comment