Welcome![Sign In][Sign Up]
Location:
Search - Wav string

Search list

[Speech/Voice recognition/combineexp_001

Description: 自己用VC编写的一个读取wave文件,并计算短时能量、短时过零率以及自相关函数的程序。所有的计算结果都会显示在程序运行后生成的文本文档中。注意,运行程序时需要修改wave文件路径,在程序中体现为wavefilename字符串指针所指向的内容。-own VC prepared a document reader wave and short-term energy calculation, Short-term rates and zero autocorrelation function procedures. All the results will show in the running after generation of text documents. Attention, operating procedures need to amend the wave paper trails. the procedure embodied wavefilename string of indicators pointing to the contents.
Platform: | Size: 703488 | Author: 曹雨 | Hits:

[Windows Developpopcapframework_1_3

Description: popcapframework1.3版,这是著名的PopCap游戏公司,不知道的话,祖玛应该知道吧,这些游戏都是用这个框架开发的,现在PopCap将它开源了!-PopCap Games Framework Version 1.3 Changes General * Removed support for Visual Studio/Visual C++ 6. If you use these versions, you will need to update your project files manually. o Note: you can download Visual Studio 2005 Express edition for free from Microsoft (http://msdn.microsoft.com/vstudio/express/) * PAKfile support- See docs/Pak Resource File Support.doc * Added support for wide displays and for windowed emulation of wide displays. * Some wide string/localization related changes to strings/chars: Use the WideString.vcproj projects for widestring support * Added support to draw anti-aliased lines/polygons. * Cached WAV files are "encrypted" (weakly) to prevent the easy copying of sound resources. * All demos were made to be widestring compatible and we added corresponding widestring projects. std::string has been replaced with SexyString, char with SexyChar, and a few std::string to SexyString conversion functions are no
Platform: | Size: 8726528 | Author: blueseaineye | Hits:

[Audio programhowto_mci_wav

Description: The program composes a command string of the form: open waveaudio!file alias myaudio wait Where file is the path to the .wav file. It sends this command to the mciSendString function. It then sends the command "Play myaudio wait" to play the file and "close myaudio wait" to close the file when it is done-The program composes a command string of the form: open waveaudio!file alias myaudio wait Where file is the path to the .wav file. It sends this command to the mciSendString function. It then sends the command "Play myaudio wait" to play the file and "close myaudio wait" to close the file when it is done
Platform: | Size: 14336 | Author: D | Hits:

[Speech/Voice recognition/combinesr

Description: 将.wav格式文件识别转换成文本字符串显示在对话框中。-Recognise the .wav format file and translate it to text or string. At last, display it on a dialog.
Platform: | Size: 86016 | Author: 卢运钊 | Hits:

[Embeded-SCM DevelopTest

Description: 为44B0的测试代码,可以测试蜂鸣器,IIS 播放WAV文件,USB点灯,按键,串行FLASH,IDE硬盘 LCD等。 0 : Please input a number 1 : Memory test 2 : Timer PWM test ( Beep ) 3 : IIC EEPROM test 4 : ADC test 5 : Download File by uart(DNW) 6 : IIS Play test(Please download *.wav by Uart first) 7 : PDIUSBD12 test 8 : LCD test Mono 9 : LCD test Mono printf string 10 : LCD test Grey 4 11 : LCD test Gray 16 12 : LCD test Color 256 13 : Interrupt test 14 : Get IDE information-Test code for the 44B0, you can test buzzer, IIS plays WAV files, USB lamps, buttons, serial FLASH, IDE hard drive LCD and other. 0: Please input a number 1: Memory test 2: Timer PWM test (Beep) 3: IIC EEPROM test 4: ADC test 5: Download File by uart (DNW) 6: IIS Play test (Please download*. wav by Uart first ) 7: PDIUSBD12 test 8: LCD test Mono 9: LCD test Mono printf string 10: LCD test Grey 4 11: LCD test Gray 16 12: LCD test Color 256 13: Interrupt test 14: Get IDE information
Platform: | Size: 1922048 | Author: 张俊 | Hits:

[androidFileSelector

Description: private void ShowSelectFiles(){ String actionName = "SelectFiles" // 动作名 Intent i=new Intent(actionName) // 以下参数都不是必须的,参数名区分大小写 i.putExtra("Single", true) // 是否只能选择一个文件 i.putExtra("Path", "/mnt/") // 起始目录 i.putExtra("Type", "File") // 允许选择文件(File) 还是目录(Folder) 还是都可以(All) i.putExtra("Pattern", "\\.(wma|mp3|mid|wav)$") // 文件名必须匹配的正则表达式 try{ startActivityForResult(i,0) }catch(Exception ex){ Toast t =Toast.makeText(this, "请安装文件选择器", 1000) t.setGravity(Gravity.CENTER, 0, 0) t.show() } } protected void onActivityResult(int requestCode, int resultCode, Intent data) { if(resultCode==Activity.RESULT_OK){ ArrayList<String> listFile = data.getStringArrayListExtra("Result") //处理选中的文件.... }-file select this is file select
Platform: | Size: 43008 | Author: gz | Hits:

[Windows DevelopEmussicChordfx

Description: 提取音乐(wav格式)中两种与弦特征:chromagram与tonalcentroid。其中chromagram是12维特特征,根据十二平均律而来;tonalcentroid是在十二平均律的基础上加入了了与弦结构信息(五度循环圈)的到的六维信息。 -Two and string features extract music (wav format): chromagram tonalcentroid. 12 Witt characteristics which chromagram equal temperament came the tonalcentroid added on the basis of the equal temperament and chord structure (five-degree circle) to the six-dimensional information.
Platform: | Size: 5120 | Author: 商人 | Hits:

[Dialog_WindowcDialogs

Description: VB中增加对话框支持,如文件打开、保存、打印、颜色选择、字体选择等,不需要VB中的文件框控件,直接采用API实现,很精简。 如选择音乐文件的调用方便如下: Private Sub cmdSelectMusic_Click() Dim cDialog As New CCommonDialogs Dim picFile As String, Filter As String cDialog.FileExtension = "*.bmp *.jpg" Filter = "Wave files(*.wav)" + Chr$(0) + "*.wav" + Chr$(0) picFile = cDialog.ShowOpen1(Me.hwnd, Filter, "Select Music File", "*.wav") If picFile <> "" Then txtRestPlayMusic = picFile End If End Sub -VB to increase the support of the dialog box, such as file open, save, print, color selection, font selection, etc., do not need to file box control in VB, direct API implementation, very streamlined. Call convenient to select the music file is as follows: the Private Sub cmdSelectMusic_Click () Dim cDialog As New CCommonDialogs Dim picFile As String, Filter As String ' cDialog.FileExtension = " *. Bmp the* jpg Filter =" Wave files (*. Wav ) " + Chr $ (0)+" *. wav " + Chr $ (0) picFile = cDialog.ShowOpen1 (Me.hwnd, Filter," Select Music File " ," *. wav " ) If picFile < > " " Then txtRestPlayMusic = picFile End If End Sub
Platform: | Size: 6144 | Author: gisnt | Hits:

[Modem programcode

Description: winmm.dll中的mciSendString方法录音C#代码 mciSendString是用来播放多媒体文件的API指令,可以播放MPEG,AVI,WAV,MP3,等等 该函数有四个参数: 第一个参数:要发送的命令字符串。字符串结构是:[命令][设备别名][命令参数]. 第二个参数:返回信息的缓冲区,为一指定了大小的字符串变量. 第三个参数:缓冲区的大小,就是字符变量的长度. 第四个参数:回调方式,一般设为零-the winmm.dll of the mciSendString method of recording the C# code mciSendString API instruction is used to play multimedia files that can play MPEG, AVI, WAV, MP3, etc. The function has four parameters: the first parameter: To send a command character string. String structure is: [command] [device alias] [command parameters]. Second parameter: Returns information buffer size for a specified string variable. Third parameter: the size of the buffer is character variable length. fourth parameter: callback, generally set to zero
Platform: | Size: 1024 | Author: | Hits:

[Crack Hackaudiomark-master

Description: Use audiomark to embed secret data into ".wav" files! Unfortunately only available to linux users, audiomark allows you to embed a string of data into a wav file via the "embed" command. You can then check to see if your friends got the same wav file from you by testing it with the "test" command!-Use audiomark to embed secret data into ".wav" files! Unfortunately only available to linux users, audiomark allows you to embed a string of data into a wav file via the "embed" command. You can then check to see if your friends got the same wav file from you by testing it with the "test" command!
Platform: | Size: 4556800 | Author: hemal | Hits:

[EditorLC_eXeScope6.41

Description: eXeScope 是一个能够直接编辑可执行文件的资源编辑器。 它能够分析并改写 EXE、DLL、OCX 等文件的资源。而且这是不需要源代码的。几乎 支持所有的资源格式,比如菜单、对话框、字符串、消息表、图标、光标、位图、快 捷键列表、版本信息、Delphi 窗体,WAV 文件、MIDI、AVI、GIF、 HTML、JPEG、 工具栏。而且,eXeScope 能够分析并显示 导入/导出 函数和在 DLL、OCX 中的类型 库等等。-eXeScope is a resource editor can directly edit the executable file. It can analyze and rewrite the EXE, DLL, OCX and other documents of resources. And it does not require source code. Almost Supports all resource formats, such as menus, dialog boxes, string, message table, icons, cursors, bitmaps, fast McNair key list, version information, Delphi Forms, WAV files, MIDI, AVI, GIF, HTML, JPEG, Toolbar. Moreover, eXeScope able to analyze and display the import/export function and the DLL, OCX types in Libraries and so on.
Platform: | Size: 585728 | Author: 林宸贤 | Hits:

[OS programPDAWeb

Description: [DllImport( CoreDll.dll )] //, EntryPoint sound public static extern bool PlaySound(string pszSound, int hmod, int fdwSound) public const int SND_FILENAME 0x00020000 public const int SND_ASYNC 0x0001 public void sound(string soundPath)//例:soundPath sound\\2.wav 路径只满足环境目录下就OK { PlaySound(soundPath, 0, SND_ASYNC | SND_FILENAME) //播放WAV格式声音 Thread.Sleep(2000) //播放2000毫秒(2秒) }-[DllImport( CoreDll.dll )] //, EntryPoint sound public static extern bool PlaySound(string pszSound, int hmod, int fdwSound) public const int SND_FILENAME 0x00020000 public const int SND_ASYNC 0x0001 public void sound(string soundPath)//例:soundPath sound\\2.wav 路径只满足环境目录下就OK { PlaySound(soundPath, 0, SND_ASYNC | SND_FILENAME) //播放WAV格式声音 Thread.Sleep(2000) //播放2000毫秒(2秒) }
Platform: | Size: 7168 | Author: 任凡凡 | Hits:

CodeBus www.codebus.net