我正在制作音频编辑应用程序,我想修剪我的音频。对于音频编辑,我使用AudioKit框架。但在教程和示例中,我找不到如何使用此框架裁剪音频?
发布于 2018-08-28 16:47:54
异步导出允许设置开始和结束样本:
/// Exports Asynchronously to a new AKAudiofile with trimming options.
///
...
/// - fromSample: start range in samples
/// - toSample: end range time in samples
...
public func exportAsynchronously(name: String,
baseDir: BaseDirectory,
exportFormat: ExportFormat,
fromSample: Int64 = 0,
toSample: Int64 = 0,
callback: @escaping AsyncProcessCallback) {
let fromFileExt = fileExt.lowercased()
https://stackoverflow.com/questions/52060593
复制相似问题