Skip to content

Commit a351cbf

Browse files
Fixed Typo in _format.py of line 66 from h264_afm to h264_amf
1 parent 40d22e4 commit a351cbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffmpeg_streaming/_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(self, video: str = "libx264", audio: str = 'aac', **codec_options):
6363
"""
6464
@TODO: add documentation
6565
"""
66-
videos = ['libx264', 'h264', 'h264_afm', 'h264_nvenc']
66+
videos = ['libx264', 'h264', 'h264_amf', 'h264_nvenc']
6767
audios = ['copy', 'aac', 'libvo_aacenc', 'libfaac', 'libmp3lame', 'libfdk_aac']
6868

6969
super(H264, self).__init__(_verify_codecs(video, videos), _verify_codecs(audio, audios), **codec_options)

0 commit comments

Comments
 (0)