aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--youtube_dl/postprocessor/ffmpeg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py
index 173bdbe68..a9fafa363 100644
--- a/youtube_dl/postprocessor/ffmpeg.py
+++ b/youtube_dl/postprocessor/ffmpeg.py
@@ -83,8 +83,8 @@ class FFmpegPostProcessor(PostProcessor):
ver = get_exe_version(path, args=['-version'])
if ver:
regexs = [
- r'([0-9.]+)-0ubuntu0\.[0-9.]+$', # Ubuntu
- r'n([0-9.]+)$', # Arch Linux
+ r'([0-9.]+)-0ubuntu0\.[0-9.]+$', # Ubuntu
+ r'n([0-9.]+)$', # Arch Linux
]
for regex in regexs:
mobj = re.match(regex, ver)