实例介绍
FMOD API (包含头文件,例子,运行库),原始SDK包比较大,我打包了一下,方便有用到的下载
【实例截图】
【核心代码】
FMOD
└── FMOD
├── examples
│ ├── 3d.cpp
│ ├── asyncio.cpp
│ ├── bin
│ │ ├── fmod_codec_raw.dll
│ │ ├── fmod_distance_filter.dll
│ │ ├── fmod.dll
│ │ ├── fmod_gain.dll
│ │ ├── fmodL.dll
│ │ ├── fmod_noise.dll
│ │ ├── output_mp3.dll
│ │ └── output_mp3L.dll
│ ├── channel_groups.cpp
│ ├── common.cpp
│ ├── common.h
│ ├── common_platform.cpp
│ ├── common_platform.h
│ ├── convolution_reverb.cpp
│ ├── dsp_custom.cpp
│ ├── dsp_effect_per_speaker.cpp
│ ├── dsp_inspector.cpp
│ ├── effects.cpp
│ ├── gapless_playback.cpp
│ ├── generate_tone.cpp
│ ├── granular_synth.cpp
│ ├── load_from_memory.cpp
│ ├── media
│ │ ├── c.ogg
│ │ ├── d.ogg
│ │ ├── drumloop.wav
│ │ ├── e.ogg
│ │ ├── granular
│ │ │ ├── truck_idle_off_01.wav
│ │ │ ├── truck_idle_off_02.wav
│ │ │ ├── truck_idle_off_03.wav
│ │ │ ├── truck_idle_off_04.wav
│ │ │ ├── truck_idle_off_05.wav
│ │ │ └── truck_idle_off_06.wav
│ │ ├── jaguar.wav
│ │ ├── singing.wav
│ │ ├── standrews.wav
│ │ ├── stereo.ogg
│ │ ├── swish.wav
│ │ ├── wave.mp3
│ │ └── wave_vorbis.fsb
│ ├── multiple_speaker.cpp
│ ├── multiple_system.cpp
│ ├── net_stream.cpp
│ ├── play_sound.cpp
│ ├── play_stream.cpp
│ ├── plugins
│ │ ├── BladeMP3EncDLL.h
│ │ ├── fmod_codec_raw.cpp
│ │ ├── fmod_distance_filter.cpp
│ │ ├── fmod_gain.cpp
│ │ ├── fmod_noise.cpp
│ │ ├── lame_enc64.dll
│ │ ├── lame_enc.dll
│ │ └── output_mp3.cpp
│ ├── record.cpp
│ ├── record_enumeration.cpp
│ ├── user_created_sound.cpp
│ ├── vs2010
│ │ ├── 3d.vcxproj
│ │ ├── 3d.vcxproj.filters
│ │ ├── asyncio.vcxproj
│ │ ├── asyncio.vcxproj.filters
│ │ ├── channel_groups.vcxproj
│ │ ├── channel_groups.vcxproj.filters
│ │ ├── convolution_reverb.vcxproj
│ │ ├── convolution_reverb.vcxproj.filters
│ │ ├── dsp_custom.vcxproj
│ │ ├── dsp_custom.vcxproj.filters
│ │ ├── dsp_effect_per_speaker.vcxproj
│ │ ├── dsp_effect_per_speaker.vcxproj.filters
│ │ ├── dsp_inspector.vcxproj
│ │ ├── dsp_inspector.vcxproj.filters
│ │ ├── effects.vcxproj
│ │ ├── effects.vcxproj.filters
│ │ ├── examples.sln
│ │ ├── fmod_codec_raw.vcxproj
│ │ ├── fmod_distance_filter.vcxproj
│ │ ├── fmod_gain.vcxproj
│ │ ├── fmod_noise.vcxproj
│ │ ├── gapless_playback.vcxproj
│ │ ├── gapless_playback.vcxproj.filters
│ │ ├── generate_tone.vcxproj
│ │ ├── generate_tone.vcxproj.filters
│ │ ├── granular_synth.vcxproj
│ │ ├── granular_synth.vcxproj.filters
│ │ ├── load_from_memory.vcxproj
│ │ ├── load_from_memory.vcxproj.filters
│ │ ├── multiple_speaker.vcxproj
│ │ ├── multiple_speaker.vcxproj.filters
│ │ ├── multiple_system.vcxproj
│ │ ├── multiple_system.vcxproj.filters
│ │ ├── net_stream.vcxproj
│ │ ├── net_stream.vcxproj.filters
│ │ ├── output_mp3.vcxproj
│ │ ├── play_sound.vcxproj
│ │ ├── play_sound.vcxproj.filters
│ │ ├── play_stream.vcxproj
│ │ ├── play_stream.vcxproj.filters
│ │ ├── record_enumeration.vcxproj
│ │ ├── record_enumeration.vcxproj.filters
│ │ ├── record.vcxproj
│ │ ├── record.vcxproj.filters
│ │ ├── user_created_sound.vcxproj
│ │ └── user_created_sound.vcxproj.filters
│ └── vs2012
│ ├── 3d.vcxproj
│ ├── 3d.vcxproj.filters
│ ├── asyncio.vcxproj
│ ├── asyncio.vcxproj.filters
│ ├── _builds
│ │ ├── output_mp3
│ │ │ └── Debug
│ │ │ └── Win32
│ │ │ ├── output_mp3L.dll
│ │ │ ├── output_mp3L.exp
│ │ │ ├── output_mp3L.lib
│ │ │ ├── output_mp3.log
│ │ │ ├── output_mp3L.pdb
│ │ │ ├── output_mp3.obj
│ │ │ ├── output_mp3.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ ├── output_mp3.lastbuildstate
│ │ │ │ └── output_mp3.write.1u.tlog
│ │ │ ├── vc141.idb
│ │ │ └── vc141.pdb
│ │ └── play_sound
│ │ └── Debug
│ │ └── Win32
│ │ ├── common.obj
│ │ ├── common_platform.obj
│ │ ├── fmodL.dll
│ │ ├── play_soundL.exe
│ │ ├── play_sound.log
│ │ ├── play_soundL.pdb
│ │ ├── play_sound.obj
│ │ ├── play_sound.tlog
│ │ │ ├── CL.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ ├── link.write.1.tlog
│ │ │ └── play_sound.lastbuildstate
│ │ ├── vc141.idb
│ │ └── vc141.pdb
│ ├── channel_groups.vcxproj
│ ├── channel_groups.vcxproj.filters
│ ├── convolution_reverb.vcxproj
│ ├── convolution_reverb.vcxproj.filters
│ ├── dsp_custom.vcxproj
│ ├── dsp_custom.vcxproj.filters
│ ├── dsp_effect_per_speaker.vcxproj
│ ├── dsp_effect_per_speaker.vcxproj.filters
│ ├── dsp_inspector.vcxproj
│ ├── dsp_inspector.vcxproj.filters
│ ├── effects.vcxproj
│ ├── effects.vcxproj.filters
│ ├── examples.sln
│ ├── fmod_codec_raw.vcxproj
│ ├── fmod_distance_filter.vcxproj
│ ├── fmod_gain.vcxproj
│ ├── fmod_noise.vcxproj
│ ├── gapless_playback.vcxproj
│ ├── gapless_playback.vcxproj.filters
│ ├── generate_tone.vcxproj
│ ├── generate_tone.vcxproj.filters
│ ├── granular_synth.vcxproj
│ ├── granular_synth.vcxproj.filters
│ ├── load_from_memory.vcxproj
│ ├── load_from_memory.vcxproj.filters
│ ├── multiple_speaker.vcxproj
│ ├── multiple_speaker.vcxproj.filters
│ ├── multiple_system.vcxproj
│ ├── multiple_system.vcxproj.filters
│ ├── net_stream.vcxproj
│ ├── net_stream.vcxproj.filters
│ ├── output_mp3.vcxproj
│ ├── play_sound.vcxproj
│ ├── play_sound.vcxproj.filters
│ ├── play_stream.vcxproj
│ ├── play_stream.vcxproj.filters
│ ├── record_enumeration.vcxproj
│ ├── record_enumeration.vcxproj.filters
│ ├── record.vcxproj
│ ├── record.vcxproj.filters
│ ├── user_created_sound.vcxproj
│ └── user_created_sound.vcxproj.filters
├── inc
│ ├── fmod_codec.h
│ ├── fmod_common.h
│ ├── fmod.cs
│ ├── fmod_dsp.cs
│ ├── fmod_dsp_effects.h
│ ├── fmod_dsp.h
│ ├── fmod_errors.cs
│ ├── fmod_errors.h
│ ├── fmod.h
│ ├── fmod.hpp
│ └── fmod_output.h
└── lib
├── fmod64.dll
├── fmod64_vc.lib
├── fmod.dll
├── fmodL64.dll
├── fmodL64_vc.lib
├── fmodL.dll
├── fmodL_vc.lib
├── fmod_vc.lib
├── libfmod.a
└── libfmodL.a
19 directories, 202 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论