Manage data and information of a channel.
Module audioopy
Class Channel
Description
Constructor
Create a sppasChannel instance.
Parameters
- framerate: (int) The frame rate of this channel, in Hertz.
- sampwidth: (int) 1 for 8 bits, 2 for 16 bits, 4 for 32 bits.
- frames: (bytes) The frames represented by a string.
View Source
def __init__(self, framerate=16000, sampwidth=2, frames=b''):
"""Create a sppasChannel instance.
:param framerate: (int) The frame rate of this channel, in Hertz.
:param sampwidth: (int) 1 for 8 bits, 2 for 16 bits, 4 for 32 bits.
:param frames: (bytes) The frames represented by a string.
"""
self._framerate = 16000
self._sampwidth = 2
self._frames = b''
self._position = 0
self.set_framerate(framerate)
self.set_sampwidth(sampwidth)
self.set_frames(frames)
Public functions
set_frames
Set new frames to the channel.
It is supposed the sampwidth and framerate are the same as the current ones.
Parameters
- frames: (str) the new frames
View Source
def set_frames(self, frames):
"""Set new frames to the channel.
It is supposed the sampwidth and framerate are the same as the
current ones.
:param frames: (str) the new frames
"""
self._frames = frames
set_sampwidth
Set a new samples width to the channel.
Parameters
- sampwidth: (int) 1 for 8 bits, 2 for 16 bits, 4 for 32 bits.
View Source
def set_sampwidth(self, sampwidth):
"""Set a new samples width to the channel.
:param sampwidth: (int) 1 for 8 bits, 2 for 16 bits, 4 for 32 bits.
"""
sampwidth = int(sampwidth)
if sampwidth not in [1, 2, 4]:
raise SampleWidthError(sampwidth)
self._sampwidth = sampwidth
set_framerate
Set a new framerate to the channel.
Parameters
- framerate: (int) The frame rate of this channel, in Hertz. A value between 8000 and 192000
View Source
def set_framerate(self, framerate):
"""Set a new framerate to the channel.
:param framerate: (int) The frame rate of this channel, in Hertz.
A value between 8000 and 192000
"""
framerate = int(framerate)
if 8000 <= framerate <= 192000:
self._framerate = framerate
else:
raise FrameRateError(framerate)
get_frames
Return some frames from the current position.
Parameters
- chunck_size: (int) the size of the chunk to return. None for all frames of the channel.
Returns
- (str) the frames
View Source
def get_frames(self, chunck_size=None):
"""Return some frames from the current position.
:param chunck_size: (int) the size of the chunk to return.
None for all frames of the channel.
:return: (str) the frames
"""
if chunck_size is None:
return self._frames
chunck_size = int(chunck_size)
p = int(self._position)
m = len(self._frames)
s = p * self._sampwidth
e = min(m, s + chunck_size * self._sampwidth)
f = self._frames[s:e]
self._position = p + chunck_size
return f
get_nframes
Return the number of frames.
A frame has a length of (sampwidth) bytes.
Returns
- (int) the total number of frames
View Source
def get_nframes(self):
"""Return the number of frames.
A frame has a length of (sampwidth) bytes.
:return: (int) the total number of frames
"""
return len(self._frames) / self._sampwidth
get_framerate
Return the frame rate, in Hz.
Returns
- (int) the frame rate of the channel
View Source
def get_framerate(self):
"""Return the frame rate, in Hz.
:return: (int) the frame rate of the channel
"""
return self._framerate
get_sampwidth
Return the sample width.
Returns
- (int) the sample width of the channel
View Source
def get_sampwidth(self):
"""Return the sample width.
:return: (int) the sample width of the channel
"""
return self._sampwidth
get_cross
Return the number of zero crossings.
Returns
- (int) number of zero crossing
View Source
def get_cross(self):
"""Return the number of zero crossings.
:return: (int) number of zero crossing
"""
a = AudioFrames(self._frames, self._sampwidth, 1)
return a.cross()
rms
Return the root-mean-square of the channel.
Returns
- (float) the root-mean-square of the channel
View Source
def rms(self):
"""Return the root-mean-square of the channel.
:return: (float) the root-mean-square of the channel
"""
a = AudioFrames(self._frames, self._sampwidth, 1)
return a.rms()
clipping_rate
Return the clipping rate of the frames.
Parameters
- factor: (float) An interval to be more precise on clipping rate. It will consider that all frames outside the interval are clipped. Factor has to be between 0 and 1.
Returns
- (float) the clipping rate
View Source
def clipping_rate(self, factor):
"""Return the clipping rate of the frames.
:param factor: (float) An interval to be more precise on clipping rate.
It will consider that all frames outside the interval are clipped.
Factor has to be between 0 and 1.
:return: (float) the clipping rate
"""
a = AudioFrames(self._frames, self._sampwidth, 1)
return a.clipping_rate(factor)
get_duration
Return the duration of the channel, in seconds.
Returns
- (float) the duration of the channel
View Source
def get_duration(self):
"""Return the duration of the channel, in seconds.
:return: (float) the duration of the channel
"""
return float(self.get_nframes()) / float(self.get_framerate())
extract_fragment
Extract a fragment between the beginning and the end.
Parameters
- begin: (int: number of frames) the beginning of the fragment to extract
- end: (int: number of frames) the end of the fragment to extract
Returns
- (Channel) the fragment extracted.
View Source
def extract_fragment(self, begin=None, end=None):
"""Extract a fragment between the beginning and the end.
:param begin: (int: number of frames) the beginning of the fragment to extract
:param end: (int: number of frames) the end of the fragment to extract
:return: (Channel) the fragment extracted.
"""
nframes = self.get_nframes()
if begin is None:
begin = 0
if end is None:
end = nframes
begin = int(begin)
end = int(end)
if end < 0 or end > nframes:
end = nframes
if begin > nframes:
return Channel(self._framerate, self._sampwidth, b'')
if begin < 0:
begin = 0
if begin == 0 and end == nframes:
return Channel(self._framerate, self._sampwidth, self._frames)
if begin > end:
raise IntervalError(begin, end)
pos_begin = int(begin * self._sampwidth)
if end == self.get_nframes():
frames = self._frames[pos_begin:]
else:
pos_end = int(end * self._sampwidth)
frames = self._frames[pos_begin:pos_end]
return Channel(self._framerate, self._sampwidth, frames)
tell
Return the current position.
View Source
def tell(self):
"""Return the current position."""
return self._position
rewind
Set the position to 0.
View Source
def rewind(self):
"""Set the position to 0."""
self._position = 0
seek
Fix the current position.
Parameters
- position: (int)
View Source
def seek(self, position):
"""Fix the current position.
:param position: (int)
"""
self._position = max(0, min(position, len(self._frames) // self._sampwidth))
Overloads
__str__
View Source
def __str__(self):
return 'Channel: framerate %d, sampleswidth %d, position %d, nframes %d' % (self._framerate, self._sampwidth, self._position, len(self._frames))