From ef0a01bc9b772c45f1d063934cecb0b39981af33 Mon Sep 17 00:00:00 2001 From: Javanaut Date: Tue, 14 Jan 2025 08:04:55 +0100 Subject: [PATCH] ff --- src/ffx/track_codec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ffx/track_codec.py b/src/ffx/track_codec.py index eeb15ea..5e94f8f 100644 --- a/src/ffx/track_codec.py +++ b/src/ffx/track_codec.py @@ -17,7 +17,7 @@ class TrackCodec(Enum): SRT = {'identifier': 'subrip', 'format': 'srt', 'extension': 'srt' , 'label': 'SRT'} ASS = {'identifier': 'ass', 'format': 'ass', 'extension': 'ass' , 'label': 'ASS'} PGS = {'identifier': 'hdmv_pgs_subtitle', 'format': 'sup', 'extension': 'sup' , 'label': 'PGS'} - VOBSUB = {'identifier': 'dvd_subtitle', 'format': None, 'extension': 'mks' , 'label': 'VobSub'} + VOBSUB = {'identifier': 'dvd_subtitle', 'format': 'mkv', 'extension': 'mks' , 'label': 'VobSub'} PNG = {'identifier': 'png', 'format': None, 'extension': 'png' , 'label': 'PNG'}