Tag: flac

MonoTouch iOS FLAC文件语音识别

我正在编写iOS应用程序,应用程序可以通过MonoTouch识别用户的语音。 我需要使用麦克风并将语音文件转换为FLAC格式,才能将其发送到Google Speech API。 是否有任何库/代码示例,或者是否有可能使用MonoTouch为iOS创buildSpeech-Recognition应用程序,例如Google Speech API ? 或者有可能将audio输出(.caf文件)转换为.flac文件?

如何将FLAC文件转换为ios中的wav文件?

我想创build一个支持Flac格式的audio文件的audio播放器。为此我试图实现flac到wav转换的algorithm,如下所示 请帮帮我。 所有这一切都给了我错误 错误:初始化解码器:FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE static FLAC__bool write_little_endian_uint16(FILE *f, FLAC__uint16 x) { return fputc(x, f) != EOF && fputc(x >> 8, f) != EOF ; } static FLAC__bool write_little_endian_int16(FILE *f, FLAC__int16 x) { return write_little_endian_uint16(f, (FLAC__uint16)x); } static FLAC__bool write_little_endian_uint32(FILE *f, FLAC__uint32 x) { return fputc(x, f) != EOF && fputc(x >> 8, f) != EOF […]