Class AudioMixer
Provides audio mixing functionality to combine multiple audio files into a single output file, with support for automatic volume detection and adjustment.
public class AudioMixer
- Inheritance
-
AudioMixer
- Inherited Members
Constructors
AudioMixer()
public AudioMixer()
Properties
ErrorDescription
Gets the last error description if the last method call returned false.
public string ErrorDescription { get; }
Property Value
FileCache
Gets or sets the file cache for optimized file access.
public FileCache FileCache { get; set; }
Property Value
Methods
Execute(List<InputFileItem>, string)
Executes audio mixing of multiple input files into a single output file.
public Task<bool> Execute(List<InputFileItem> inputFiles, string outputFilePath)
Parameters
inputFilesList<InputFileItem>The list of input files to mix.
outputFilePathstringThe path for the output mixed file.