diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 2d8984f5d..702857cc7 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -264,7 +264,7 @@ class ConvertPlugin(BeetsPlugin): u'extension': u'm4a', }, u'flac': { - u'command': u'ffmpeg -i $source -y -acodec flac $dest', + u'command': u'ffmpeg -i $source -y -acodec flac -vn $dest', u'extension': u'flac', }, u'mp3': { diff --git a/docs/changelog.rst b/docs/changelog.rst index 1a1e1e546..00aae89cf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -21,6 +21,8 @@ Fixes: non-ASCII characters. * The ``%if{}`` template function now appropriately interprets the condition as false when it contains the string "false". Thanks to Ayberk Yilmaz. +* :doc:`/plugins/convert`: Disable a potential video stream in flac files + conversion with ffmpeg 1.3.5 (April 15, 2014)