Hardware accelerators for ffmpeg on FreeBSD 14

I need some form of acceleration for ffmpeg as I'm going to be converting a lot of video into multiple codecs. H.264 is essential but AV1 would be really handy. Would I need to get a datacentre Nvidia card or something? I'm not sure what hardware of this type FreeBSD supports. I've only really just moved over from Linux.
 
HI Mate

ffmpeg codecs shows nvenvc, av1, hevc and vaapi

Code:
ffmpeg -codecs | grep nvenc

Code:
 DEV.L. av1                  Alliance for Open Media AV1 (decoders: libdav1d libaom-av1 av1 av1_cuvid ) (encoders: libaom-av1 libsvtav1 av1_nvenc )
 DEV.LS h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_v4l2m2m h264_cuvid ) (encoders: libx264 libx264rgb h264_nvenc h264_v4l2m2m h264_vaapi )
 DEV.L. hevc                 H.265 / HEVC (High Efficiency Video Coding) (decoders: hevc hevc_v4l2m2m hevc_cuvid ) (encoders: libx265 hevc_nvenc hevc_v4l2m2m hevc_vaapi )
[

Code:
ffmpeg -codecs | grep av1


Code:
 DEV.L. av1                  Alliance for Open Media AV1 (decoders: libdav1d libaom-av1 av1 av1_cuvid ) (encoders: libaom-av1 libsvtav1 av1_nvenc )
 DEAIL. wmav1                Windows Media Audio 1
[

im running freebsd 14 on a dell xps 15 2019 with an nvidia card
 
HI Mate

ffmpeg codecs shows nvenvc, av1, hevc and vaapi

Code:
ffmpeg -codecs | grep nvenc

Code:
 DEV.L. av1                  Alliance for Open Media AV1 (decoders: libdav1d libaom-av1 av1 av1_cuvid ) (encoders: libaom-av1 libsvtav1 av1_nvenc )
 DEV.LS h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_v4l2m2m h264_cuvid ) (encoders: libx264 libx264rgb h264_nvenc h264_v4l2m2m h264_vaapi )
 DEV.L. hevc                 H.265 / HEVC (High Efficiency Video Coding) (decoders: hevc hevc_v4l2m2m hevc_cuvid ) (encoders: libx265 hevc_nvenc hevc_v4l2m2m hevc_vaapi )
[

Code:
ffmpeg -codecs | grep av1


Code:
 DEV.L. av1                  Alliance for Open Media AV1 (decoders: libdav1d libaom-av1 av1 av1_cuvid ) (encoders: libaom-av1 libsvtav1 av1_nvenc )
 DEAIL. wmav1                Windows Media Audio 1
[

im running freebsd 14 on a dell xps 15 2019 with an nvidia card
Thank you! That was very helpful.
 
Back
Top