From 0b520f2e86fedfd450390c67b34def016c6a2771 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 19 May 2011 01:23:53 +0000 Subject: [PATCH] * morituri/common/encode.py: Alac does not have merge_tags. Fixes #15. --- ChangeLog | 5 +++++ morituri/common/encode.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3f66529..eca5bc3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-05-19 Thomas Vander Stichele + + * morituri/common/encode.py: + Alac does not have merge_tags. Fixes #15. + 2011-05-19 Thomas Vander Stichele * morituri/program/cdparanoia.py: diff --git a/morituri/common/encode.py b/morituri/common/encode.py index a3d64a7..0d27c21 100644 --- a/morituri/common/encode.py +++ b/morituri/common/encode.py @@ -66,10 +66,11 @@ class FlacProfile(Profile): return True +# FIXME: ffenc_alac does not have merge_tags class AlacProfile(Profile): name = 'alac' extension = 'alac' - pipeline = 'ffenc_alac name=tagger' + pipeline = 'ffenc_alac' lossless = True # FIXME: wavenc does not have merge_tags