瀏覽代碼

[postprocessor/embedthumbnail] Recognize atomicparsley binary in lowercase (#28112)

Max 4 年之前
父節點
當前提交
646052e416
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      youtube_dl/postprocessor/embedthumbnail.py

+ 6 - 2
youtube_dl/postprocessor/embedthumbnail.py

@@ -89,10 +89,14 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
             os.rename(encodeFilename(temp_filename), encodeFilename(filename))
 
         elif info['ext'] in ['m4a', 'mp4']:
-            if not check_executable('AtomicParsley', ['-v']):
+            atomicparsley = next((x
+                                  for x in ['AtomicParsley', 'atomicparsley']
+                                  if check_executable(x, ['-v'])), None)
+
+            if atomicparsley is None:
                 raise EmbedThumbnailPPError('AtomicParsley was not found. Please install.')
 
-            cmd = [encodeFilename('AtomicParsley', True),
+            cmd = [encodeFilename(atomicparsley, True),
                    encodeFilename(filename, True),
                    encodeArgument('--artwork'),
                    encodeFilename(thumbnail_filename, True),