# -*- coding: utf-8 -*-
#
# Copyright (c) 2007-2010 Parisson
# Copyright (c) 2010 Paul Brossier <piem@piem.org>
#
# 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: Paul Brossier <piem@piem.org>
from timeside.core import implements, interfacedoc
from timeside.core.encoder import GstEncoder
from timeside.core.api import IEncoder
[docs]class WavEncoder(GstEncoder):
"""WAV encoder based on Gstreamer"""
implements(IEncoder)
[docs] @interfacedoc
def setup(self, channels=None, samplerate=None, blocksize=None, totalframes=None):
super(WavEncoder, self).setup(
channels, samplerate, blocksize, totalframes)
self.pipe = ''' appsrc name=src
! audioconvert
! wavenc
'''
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 "wav_encoder"
[docs] @staticmethod
@interfacedoc
def version():
return "1.0"
[docs] @staticmethod
@interfacedoc
def file_extension():
return "gst.wav"
[docs] @staticmethod
@interfacedoc
def mime_type():
return "audio/x-wav"