Audio
AudioInfo
AudioAssetParams
AudioAsset
Bases: BaseAsset[AudioAssetParams, AudioInfo]
Represents an Audio asset with various properties.
type
class-attribute
instance-attribute
type: Literal['audio'] = 'audio'
The type of the asset. Defaults to "audio".
params
class-attribute
instance-attribute
params: AudioAssetParams = Field(
default_factory=AudioAssetParams
)
The parameters for the asset.
duration
property
duration: float
The duration of the audio asset.
Wrapper of AudioAsset.info.duration
for convenience and type-hint compatibility.
sample_rate
property
sample_rate: float
The sample rate of the audio asset.
Wrapper of AudioAsset.info.sample_rate
for convenience and type-hint compatibility.
sample_width
property
sample_width: int
The sample width of the audio asset.
Wrapper of AudioAsset.info.sample_width
for convenience and type-hint compatibility.
channels
property
channels: int
The number of channels in the audio asset.
Wrapper of AudioAsset.info.channels
for convenience and type-hint compatibility.
to_audio_segment
Casts the audio asset to a pydub.AudioSegment object.
Source code in src/mosaico/assets/audio.py
slice
slice(
start_time: float, end_time: float, **kwargs: Any
) -> AudioAsset
Slices the audio asset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
float
|
The start time in seconds. |
required |
|
float
|
The end time in seconds. |
required |
|
Any
|
Additional parameters passed to the audio loader. |
{}
|
Returns:
Type | Description |
---|---|
AudioAsset
|
The sliced audio asset. |
Source code in src/mosaico/assets/audio.py
strip_silence
strip_silence(
silence_threshold: float = -50,
chunk_size: int = 10,
**kwargs: Any
) -> AudioAsset
Removes leading and trailing silence from the audio asset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
float
|
Silence threshold in dBFS (default: -50.0). |
-50
|
|
int
|
Size of the audio iterator chunk, in ms (default: 10). |
10
|
|
Any
|
Additional parameters passed to the audio loader. |
{}
|
Returns:
Type | Description |
---|---|
AudioAsset
|
A new AudioAsset with leading and trailing silence removed. |