quasarstream/python-ffmpeg-video-streaming

Typo in codec filter name for H.264

igrowing opened this issue · 0 comments

Describe the bug
Line 66 in _format.py contains:

        videos = ['libx264', 'h264', 'h264_afm', 'h264_nvenc']

h264_afm is a typo. It should be h264_amf.

Also, veryuseful h264_qsv is missing.

This would be great:

        videos = ['libx264', 'h264', 'h264_qsv', 'h264_amf', 'h264_nvenc']