Metadata Module
- class sudio.metadata.metadata.AudioMetadata(name, **kwargs)
Bases:
object
Flexible metadata container for audio records.
Allows dynamic attribute creation and provides dictionary-like access to metadata with additional utility methods.
Initialize an audio metadata object.
- Parameters:
(str) (- name)
**kwargs (-) –
- keys()
Get a list of all non-private attribute names.
Returns:
:
list: Names of public attributes in the metadata.
- class sudio.metadata.audio_record_database.AudioRecordDatabase
Bases:
object
A lightweight in-memory database for managing audio records.
Provides dictionary-like access and manipulation of audio records with simple key (name) based storage and retrieval.
Initialize an empty audio record database.
Creates an empty dictionary to store audio records with names as keys.
- add_record(record)
Add an audio record to the database.
Args:
record: An audio record with a ‘name’ attribute to be used as the key.
- get_record(name)
Retrieve a specific audio record by its name.
Args:
name (str): Name of the audio record to retrieve.
Returns:
:
The audio record if found, None otherwise.