-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
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
NVENC #81
Comments
not sure, i think it is impossible to statically link stuff that is available as a blob only. Could be mistaken, and if i am, i'd greatly want a static nvenc binary as well :-) |
In case if nvenc can't work in static build, Either way, this will have to be fixed upstream. If no one picks this up I'll eventually get around to doing it, I just have lots of other stuff going on right now. |
Was this ever revisited? I find myself in the same situation of battling my way to get a static ffmpeg build with nvenc. |
I have no idea. I have this static build that includes all the nvidia stuff from here but I have no idea how it was made |
Did someone reslove the issue |
NVENC is NVidia's hardware encoder that supports H264 and HEVC. It would be neat if ffmpeg was built with
--enable-nvenc
option so that this encoder can be used in the resulting build.I already made attempts to enable this and in its current status ffmpeg does compile with
--enable-nvenc
, thenvenc_hevc
andnvenc_h264
encoders are available, but if you try to use them in the static build it results in a segmentation fault. The encoders work fine when the--static
ldexeflag is removed, but then the build is dynamic.The text was updated successfully, but these errors were encountered: