Re: [FFmpeg-user] Driver does not support the required nvenc API version

2019-12-20 Thread Mahmood Naderan
Yes. Thank you very much. I was able to run with nv-codec 8.2 $ git checkout sdk/8.2 and recompile ffmpeg. Regards, Mahmood On Fri, Dec 20, 2019 at 10:43 PM Dennis Mungai wrote: > On Fri, 20 Dec 2019, 21:57 Mahmood Naderan, wrote: > > > >recommended R440 (with Turing). > > > > Dennis, > >

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2019-12-20 Thread Dennis Mungai
On Fri, 20 Dec 2019, 21:57 Mahmood Naderan, wrote: > >recommended R440 (with Turing). > > Dennis, > I am using TitanV which is Volta. > > Regards, > Mahmood > You have an RTX 2080 on the same system. See your nvidia-smi output. To use an older driver, then downgrade nv-codec-headers to an older

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2019-12-20 Thread Mahmood Naderan
>recommended R440 (with Turing). Dennis, I am using TitanV which is Volta. Regards, Mahmood ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmpeg-user-requ.

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2019-12-20 Thread Mahmood Naderan
I don't have root access. What should I do to use older ffmpeg and existing nv-codec? Regards, Mahmood On Fri, Dec 20, 2019 at 9:51 PM Dennis Mungai wrote: > On Fri, 20 Dec 2019, 20:58 Mahmood Naderan, wrote: > > > Hi > > I use this command which fails with this error message > > > > $ ./ff

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2019-12-20 Thread Dennis Mungai
On Fri, 20 Dec 2019, 20:58 Mahmood Naderan, wrote: > Hi > I use this command which fails with this error message > > $ ./ffmpeg -init_hw_device cuda=0 -filter_hw_device 0 -i vid1080.mp4 -vf > format=nv12,hwupload,scale_npp=1280:720 -c:v h264_nvenc 720p2.mp4 > ffmpeg version N-96097-g99f505d2df C

[FFmpeg-user] Driver does not support the required nvenc API version

2019-12-20 Thread Mahmood Naderan
Hi I use this command which fails with this error message $ ./ffmpeg -init_hw_device cuda=0 -filter_hw_device 0 -i vid1080.mp4 -vf format=nv12,hwupload,scale_npp=1280:720 -c:v h264_nvenc 720p2.mp4 ffmpeg version N-96097-g99f505d2df Copyright (c) 2000-2019 the FFmpeg developers built with gcc 7

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2017-05-13 Thread Daniel
Hello Thanks to everyone for your replies i have forgotten to mention following : nvcc --version nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2016 NVIDIA Corporation Built on Tue_Jan_10_13:22:03_CST_2017 Cuda compilation tools, release 8.0, V8.0.61 ./ffmpeg ffmpeg version N-86038-ge3

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2017-05-13 Thread Nicolas George
Le tridi 23 floréal, an CCXXV, Daniel a écrit : > I am new to ffmpeg and i am trying to encode some video to x265 with > following command : > ffmpeg -i video.mp4 -c:v hevc_nvenc Stop right there: hevc_nvenc and x264 are completely different. Regards, -- Nicolas George signature.asc Descrip

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2017-05-12 Thread Erik Dobberkau
Am Samstag, 13. Mai 2017 schrieb Raymond Russell : > > > On May 12, 2017, at 4:37 PM, Daniel <5960...@gmail.com > > wrote: > > > > Hello everyone > > > > I am new to ffmpeg and i am trying to encode some video to x265 with > following command : > > ffmpeg -i video.mp4 -c:v hevc_nvenc -c:a aac -b:a

Re: [FFmpeg-user] Driver does not support the required nvenc API version

2017-05-12 Thread Raymond Russell
> On May 12, 2017, at 4:37 PM, Daniel <5960...@gmail.com> wrote: > > Hello everyone > > I am new to ffmpeg and i am trying to encode some video to x265 with > following command : > ffmpeg -i video.mp4 -c:v hevc_nvenc -c:a aac -b:a 128k output.mp4 and what i > get is "Driver does not support th

[FFmpeg-user] Driver does not support the required nvenc API version

2017-05-12 Thread Daniel
Hello everyone I am new to ffmpeg and i am trying to encode some video to x265 with following command : ffmpeg -i video.mp4 -c:v hevc_nvenc -c:a aac -b:a 128k output.mp4 and what i get is "Driver does not support the required nvenc API version. Required: 8.0 Found: 7.1" . If you can point me o