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
When I put this on my command line:
ffmpeg -i in.mkv -vf "hwupload_cuda,yadif_cuda=0:-1:0" -c:v h264_nvenc out.mp4
it works, but when I do this:
params = "-vf \"hwupload_cuda,yadif_cuda=0:-1:0\" -c:v h264_nvenc".split(" ") stream = ffmpeg.read_frames(a, output_params=params) meta = stream.__next__() writer = ffmpeg.write_frames(out_file, meta["size"], output_params=params)
it tells me:
No such filter: 'yadif_cuda' No such filter: 'hwupload_cuda'
No such filter: 'yadif_cuda'
No such filter: 'hwupload_cuda'
any chance I might be doing something stupid?
The text was updated successfully, but these errors were encountered:
That list of params will be subject to some shell escaping. Have you tried this:
params = ["-vf", "hwupload_cuda,yadif_cuda=0:-1:0", "-c:v", "h264_nvenc"]
Sorry, something went wrong.
No branches or pull requests
When I put this on my command line:
ffmpeg -i in.mkv -vf "hwupload_cuda,yadif_cuda=0:-1:0" -c:v h264_nvenc out.mp4
it works, but when I do this:
it tells me:
No such filter: 'yadif_cuda'
No such filter: 'hwupload_cuda'
any chance I might be doing something stupid?
The text was updated successfully, but these errors were encountered: