stegosphere.audio module¶ class stegosphere.audio.FVD(audio)¶ Bases: Audio, BaseVD Implements FVD (Frequency Value Differencing) steganography for hiding messages in audio files. Parameters: audio (numpy.ndarray, str, list, or tuple) – The audio data, either as a NumPy array, file path, or list/tuple. class stegosphere.audio.LSB(audio)¶ Bases: Audio, BaseLSB Implements LSB (Least Significant Bit) steganography for hiding messages in audio files. Parameters: audio (numpy.ndarray, str, list, or tuple) – The audio data, either as a NumPy array, file path, or list/tuple.