We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is strictly not an issue, but I am trying to modify the script to make an MP4 file instead.
I switched out rawvideo with libx264 and avi with mp4:
rawvideo
libx264
avi
mp4
local o = { target_dir = "~", vcodec = "libx264", acodec = "pcm_s16le", prevf = "", vf = "format=yuv444p16$hqvf,scale=in_color_matrix=$matrix,format=bgr24", hqvf = "", postvf = "", opts = "", ext = "mp4", command_template = [[ ffmpeg -v warning -y -stats -ss $shift -i "$in" -t $duration -c:v $vcodec -c:a $acodec $audio -vf $prevf$vf$postvf $opts "$out.$ext" ]], }
However, it still outputs a video as MKV (the input source).
ffmpeg -hwaccel auto -ss 1.168 -i "C:\\Users\\admin\\Desktop\\samples.mkv" -t 4.254 -c:v copy -c:a copy -map 0 -sn "C:\\Users\\admin\\Desktop\\samples - 00-00-1.168-00-00-5.422.mkv"
Any help with this would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is strictly not an issue, but I am trying to modify the script to make an MP4 file instead.
I switched out
rawvideo
withlibx264
andavi
withmp4
:However, it still outputs a video as MKV (the input source).
Any help with this would be greatly appreciated.
The text was updated successfully, but these errors were encountered: