From 44c7733018c8abd5945a82fd2227b2dbd0458d4f Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Wed, 27 Nov 2013 16:44:25 +0100 Subject: [PATCH] Encoder: fix calling arguments for m4a --- timeside/encoder/m4a.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/timeside/encoder/m4a.py b/timeside/encoder/m4a.py index 20ddb0a..72cfb9f 100644 --- a/timeside/encoder/m4a.py +++ b/timeside/encoder/m4a.py @@ -19,7 +19,7 @@ # along with TimeSide. If not, see . -from timeside.core import Processor, implements, interfacedoc +from timeside.core import implements, interfacedoc from timeside.encoder.core import GstEncoder from timeside.api import IEncoder from timeside.tools import * @@ -29,8 +29,8 @@ class AacEncoder(GstEncoder): """ gstreamer-based AAC encoder """ implements(IEncoder) - def __init__(self, *args, **kwargs): - super(AacEncoder, self).__init__( *args, **kwargs) + def __init__(self, output, streaming = False, overwrite = False): + super(AacEncoder, self).__init__(output, streaming, overwrite) if self.streaming: raise Exception("Streaming not supported") -- 2.39.5