Skip to content

Commit d3ef2c7

Browse files
Merge pull request #99 from CorruptedFile2021/Fixed-Typo
Fixed Typo in _format.py of line 66 from h264_afm to h264_amf
2 parents 3270916 + a351cbf commit d3ef2c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffmpeg_streaming/_format.py

Lines changed: 1 addition & 1 deletion
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)