Source code for timeside.plugins.encoder.flac

# -*- coding: utf-8 -*-
#
# Copyright (c) 2007-2009 Guillaume Pellerin <yomguy@parisson.com>

# This file is part of TimeSide.

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.

# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Author: Guillaume Pellerin <yomguy@parisson.com>

from timeside.core import implements, interfacedoc
from timeside.core.encoder import GstEncoder
from timeside.core.api import IEncoder


[docs]class FlacEncoder(GstEncoder): """FLAC encoder based on Gstreamer""" implements(IEncoder)
[docs] @interfacedoc def setup(self, channels=None, samplerate=None, blocksize=None, totalframes=None): super(FlacEncoder, self).setup( channels, samplerate, blocksize, totalframes) self.pipe = ''' appsrc name=src ! audioconvert ! flacenc ''' if self.filename and self.streaming: self.pipe += ''' ! tee name=t ! queue ! filesink location=%s t. ! queue ! appsink name=app sync=False ''' % self.filename elif self.filename: self.pipe += '! filesink location=%s async=False sync=False ' % self.filename else: self.pipe += '! queue ! appsink name=app sync=False ' self.start_pipeline(channels, samplerate)
[docs] @staticmethod @interfacedoc def id(): return "flac_encoder"
[docs] @staticmethod @interfacedoc def format(): return "FLAC"
[docs] @staticmethod @interfacedoc def file_extension(): return "flac"
[docs] @staticmethod @interfacedoc def mime_type(): return 'audio/x-flac'
[docs] @interfacedoc def set_metadata(self, metadata): self.metadata = metadata