gpt4 book ai didi

ios - 将录制的声音文件转换为 flac 格式 (xamarin ios)

转载 作者:行者123 更新时间:2023-12-01 16:41:20 26 4
gpt4 key购买 nike

我使用 AvAudioRecorder 在 iPhone 上录制的声音(xamarin)。如何使用 C#(用于谷歌语音 api)将音频文件转换为 .FLAC 格式?

最佳答案

目前还没有 C# wav-to-flac 转换器。

您可以简单地使用 FLACiOSwav-to-flac在 xcode 中嵌入到项目中的文件。

然后使用 native 绑定(bind)

public partial class NativeMethods 
{
[DllImport("__Internal",
EntryPoint="convertWavToFlac",
CallingConvention = CallingConvention.Cdecl)]
public static extern int FlacEncode(
[MarshalAs(UnmanagedType.LPStr)] string wav_file,
[MarshalAs(UnmanagedType.LPStr)] string flac_file) ;

}

并且只需使用绑定(bind) native 方法将您的 wav 转换为 flac。

关于ios - 将录制的声音文件转换为 flac 格式 (xamarin ios),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24065260/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com