audioman package¶
Subpackages¶
Submodules¶
audioman.audio module¶
- class audioman.audio.Audio(file: str | ndarray = array([], dtype=float64), sample_rate: int | None = None)[source]¶
Bases:
object
- __init__(file: str | ndarray = array([], dtype=float64), sample_rate: int | None = None) None [source]¶
Audio object. This is used to manipulate audio samples. Please note,
self.filename
is usually lost when editing audio.- Parameters:
file (str | numpy.ndarray, optional) – File to load, or samples as numpy array. Defaults to numpy.array([]).
sample_rate (int, optional) – Sample rate. Defaults to file sample rate or 44000.
- add_silence(start: int = 0, length: int | None = None) Audio [source]¶
Add silence to audio.
- Parameters:
start (int, optional) – Start sample to start the audio at. If it’s less than -1, then it will start at the end. Defaults to 0.
length (int, optional) – Silence length in samples. Defaults to None.
- Returns:
New Audio with silence.
- Return type:
- apply_effect(effect: Effect, start: int = 0)[source]¶
Apply effect.
- Parameters:
effect (Effect) – Effect to apply to audio. This effect must be an object that inherits from the
Effect
class.start (int, optional) – Where to start the effect in the audio in samples. Defaults to 0.
- Returns:
New Audio with applied effect.
- Return type:
- Raises:
TypeError – effects must inherit from the Effect class
- apply_scaler(scaler: ndarray, start: int = 0) Audio [source]¶
Apply a scaler to the audio samples.
- Parameters:
scaler (numpy.ndarray) – Scaler to apply to the audio samples.
start (int, optional) – Where to apply the scaler in samples. Defaults to 0.
- Returns:
New Audio with applied scaler
- Return type:
- property cache_filename: str¶
The cache filename to use when using the
.unload()
method.- Returns:
filename
- Return type:
str
- property channels: int¶
Number of audio channels.
- Returns:
Number of audio channels.
- Return type:
int
- convert_to_sample_rate(sample_rate: int)[source]¶
I want this to be able to convert a sound to a different sample rate without changing how it sounds. However, right now it just sets the sample rate without changing the samples.
- Parameters:
sample_rate (int) – new sample rate
- Raises:
TypeError – sample_rate must be ‘int’
ValueError – sample_rate must be greater than 0
- copy() Audio [source]¶
Copy this audio into a new Audio object.
- Returns:
New Audio object.
- Return type:
- property length: int¶
Length of audio in samples.
- Returns:
Number of samples.
- Return type:
int
- mix(audio2: Audio) Audio [source]¶
Mix audio together. This will overlay this audio and the new audio onto each other, so they play at the same time.
- read(filename: str | None = None)[source]¶
Read audio file.
- Parameters:
filename (str, optional) – File to read. Defaults to
self.filename
.- Raises:
FileNotFoundError – file not found
IsADirectoryError – path specified is a directory
- property samples: ndarray¶
Audio samples as numpy array.
- Returns:
Numpy array. Shape is (channels, length)
- Return type:
numpy.ndarray
- samples_to_seconds(duration: int, sample_rate: int | None = None) float [source]¶
Converts samples to seconds.
- Parameters:
duration (int) – Duration in samples
sample_rate (int, optional) – Sample rate. Defaults to
self.sample_rate
.
- Returns:
Seconds.
- Return type:
float
- save(filename: str | None = None, file_format=None, ffmpeg_options: str | None = None)[source]¶
Save file. If the filename is specified, it override
.filename
attribute.- Parameters:
filename (str, optional) – File to save audio to. Defaults to
self.filename
.file_format (str, optional) – File format to save the audio to. Defaults to None.
ffmpeg_options (str, optional) – Custom ffmpeg export options. Defaults to ‘-i “{input}” “{output}”’.
- Raises:
TypeError – filename must be str
Custom ffmpeg options¶
This is the ffmpeg export command. The input will be formatted with the input, output, format, and metadata. It will use the standard python formatting.
Custom ffmpeg options can be used to add compression, custom codecs, and processing that is not easily done using just the samples.
Examples:
-i "{input}" "{output}"
-i "{input}" -acodec flac -compression_level 12 "{output}"
-i "{input}" -compression_level 12 "{output}"
It can even be used to add an image to audio and make a video from it.
-loop 1 -i "img.jpg" -i "{input}" -shortest "{output_name}.{extension}"
Make sure to use ``{input}`` and ``{output}`` or ``{output_name}.{extension}`` as ``output`` is used when saving tags.
Please note: ffmpeg options will include
-hide_banner
, and-y
. Files will be replaced without confirmation.
- seconds_to_samples(duration: float, sample_rate: int | None = None) int [source]¶
Convert seconds to samples.
- Parameters:
duration (float) – Duration in seconds.
sample_rate (int, optional) – Sample rate. Defaults to
self.sample_rate
.
- Returns:
duration in samples
- Return type:
int
- trim(start: int = 0, length: int | None = None)[source]¶
Trim audio to specified length from start.
- Parameters:
start (int, optional) – Start in samples. Defaults to 0.
length (int, optional) – Length in samples. If not specified, the start will act as the length. Defaults to None.
- Returns:
trimmed audio.
- Return type: