实例介绍
一款比较好的.net音频开发源码.有很多高级的音频应用,如果你想研究c#的音频处理那么这个一定是个不错的选择 补充一下,这个源码解压后大约20M,包括了很多公共的累,有音频波形的输出,和基于流对音频控制的类,是个很好的资源
【实例截图】
【核心代码】
4744302542996055321.rar
└── NAudio-1-3
├── Binaries
│ └── NAudio.dll
├── Sample Apps
│ ├── Audio File Inspector
│ │ ├── AudioFileInspector.exe
│ │ ├── audio_file_inspector.html
│ │ ├── NAudio.dll
│ │ └── System.ComponentModel.Composition.dll
│ ├── MixDiff
│ │ ├── MixDiff.exe
│ │ └── NAudio.dll
│ ├── NAudio Demo
│ │ ├── NAudioDemo.exe
│ │ ├── NAudioDemo.exe.config
│ │ └── NAudio.dll
│ └── NAudio WPF Demo
│ ├── NAudio.dll
│ └── NAudioWpfDemo.exe
└── Source Code
├── AudioFileInspector
│ ├── AudioFileInspector.csproj
│ ├── AudioFileInspectorForm.cs
│ ├── AudioFileInspectorForm.Designer.cs
│ ├── AudioFileInspectorForm.resx
│ ├── audio_file_inspector.html
│ ├── bin
│ │ └── Debug
│ │ ├── AudioFileInspector.exe
│ │ ├── audio_file_inspector.html
│ │ ├── AudioFileInspector.pdb
│ │ ├── InstallScript.nsi
│ │ ├── NAudio.dll
│ │ └── System.ComponentModel.Composition.dll
│ ├── FileInspectors
│ │ ├── CakewalkMapInspector.cs
│ │ ├── MidiFileInspector.cs
│ │ ├── SoundFontInspector.cs
│ │ └── WaveFileInspector.cs
│ ├── FindForm.cs
│ ├── FindForm.Designer.cs
│ ├── FindForm.resx
│ ├── IAudioFileInspector.cs
│ ├── InstallScript.nsi
│ ├── obj
│ │ └── Debug
│ │ ├── AudioFileInspector.AudioFileInspectorForm.resources
│ │ ├── AudioFileInspector.csproj.FileListAbsolute.txt
│ │ ├── AudioFileInspector.csproj.GenerateResource.Cache
│ │ ├── AudioFileInspector.exe
│ │ ├── AudioFileInspector.FindForm.resources
│ │ ├── AudioFileInspector.OptionsForm.resources
│ │ ├── AudioFileInspector.pdb
│ │ ├── AudioFileInspector.Properties.Resources.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── OptionsForm.cs
│ ├── OptionsForm.Designer.cs
│ ├── OptionsForm.resx
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Lib
│ ├── MEF
│ │ └── System.ComponentModel.Composition.dll
│ └── NUnit
│ └── nunit.framework.dll
├── MidiFileConverter
│ ├── AdvancedOptionsForm.cs
│ ├── AdvancedOptionsForm.Designer.cs
│ ├── AdvancedOptionsForm.resx
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── InstallScript.nsi
│ │ ├── MIDI File Converter.exe
│ │ ├── MIDI File Converter.exe.config
│ │ ├── midi_file_converter.html
│ │ ├── MIDI File Converter.pdb
│ │ ├── MIDI File Converter.vshost.exe
│ │ ├── MIDI File Converter.vshost.exe.config
│ │ ├── MIDI File Converter.vshost.exe.manifest
│ │ ├── NamingRules.xml
│ │ ├── NAudio.dll
│ │ ├── NAudio.pdb
│ │ └── NAudio.xml
│ ├── InstallScript.nsi
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── MidiConverter.cs
│ ├── MidiFileConverter.csproj
│ ├── MidiFileConverter.csproj.vspscc
│ ├── midi_file_converter.html
│ ├── NamingRule.cs
│ ├── NamingRules.xml
│ ├── obj
│ │ └── Debug
│ │ ├── MarkHeath.MidiUtils.AdvancedOptionsForm.resources
│ │ ├── MarkHeath.MidiUtils.MainForm.resources
│ │ ├── MarkHeath.MidiUtils.Properties.Resources.resources
│ │ ├── MidiFileConverter.csproj.FileListAbsolute.txt
│ │ ├── MidiFileConverter.csproj.GenerateResource.Cache
│ │ ├── MIDI File Converter.exe
│ │ ├── MIDI File Converter.pdb
│ │ └── TempPE
│ ├── OutputMidiType.cs
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Misc
│ ├── Audioclient.h
│ ├── audiopolicy.h
│ ├── audiosessiontypes.h
│ └── mmdeviceapi.h
├── MixDiff
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── MixDiff.exe
│ │ ├── MixDiff.exe.config
│ │ ├── MixDiff.pdb
│ │ ├── MixDiff.vshost.exe
│ │ ├── MixDiff.vshost.exe.config
│ │ ├── MixDiff.vshost.exe.manifest
│ │ ├── NAudio.dll
│ │ ├── NAudio.pdb
│ │ └── NAudio.xml
│ ├── Images.Designer.cs
│ ├── Images.resx
│ ├── MixDiff.csproj
│ ├── MixDiff.csproj.vspscc
│ ├── MixDiffForm.cs
│ ├── MixDiffForm.Designer.cs
│ ├── MixDiffForm.resx
│ ├── MixDiffStream.cs
│ ├── MixdownInfo.cs
│ ├── obj
│ │ └── Debug
│ │ ├── MarkHeath.AudioUtils.Images.resources
│ │ ├── MarkHeath.AudioUtils.MixDiffForm.resources
│ │ ├── MarkHeath.AudioUtils.PropertiesForm.resources
│ │ ├── MarkHeath.AudioUtils.Properties.Resources.resources
│ │ ├── MarkHeath.AudioUtils.SettingsForm.resources
│ │ ├── MixDiff.csproj.FileListAbsolute.txt
│ │ ├── MixDiff.csproj.GenerateResource.Cache
│ │ ├── MixDiff.exe
│ │ ├── MixDiff.pdb
│ │ └── TempPE
│ │ ├── Images.Designer.cs.dll
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── PropertiesForm.cs
│ ├── PropertiesForm.Designer.cs
│ ├── PropertiesForm.resx
│ ├── Resources
│ │ ├── Back.png
│ │ ├── Forward.png
│ │ ├── Loop.png
│ │ ├── Pause.png
│ │ ├── Play.png
│ │ ├── Rewind.png
│ │ ├── Shuffle.png
│ │ └── Stop.png
│ ├── SettingsForm.cs
│ ├── SettingsForm.Designer.cs
│ └── SettingsForm.resx
├── NAudio
│ ├── bin
│ │ └── Debug
│ │ ├── NAudio.dll
│ │ ├── NAudio.pdb
│ │ └── NAudio.XML
│ ├── Changes.xml
│ ├── CoreAudioApi
│ │ ├── AudioCaptureClient.cs
│ │ ├── AudioClientBufferFlags.cs
│ │ ├── AudioClient.cs
│ │ ├── AudioClientShareMode.cs
│ │ ├── AudioClientStreamFlags.cs
│ │ ├── AudioEndpointVolumeCallback.cs
│ │ ├── AudioEndpointVolumeChannel.cs
│ │ ├── AudioEndpointVolumeChannels.cs
│ │ ├── AudioEndpointVolume.cs
│ │ ├── AudioEndpointVolumeNotificationDelegate.cs
│ │ ├── AudioEndpointVolumeStepInformation.cs
│ │ ├── AudioEndpointVolumeVolumeRange.cs
│ │ ├── AudioMeterInformationChannels.cs
│ │ ├── AudioMeterInformation.cs
│ │ ├── AudioRenderClient.cs
│ │ ├── AudioVolumeNotificationData.cs
│ │ ├── DataFlow.cs
│ │ ├── DeviceState.cs
│ │ ├── EEndpointHardwareSupport.cs
│ │ ├── Interfaces
│ │ │ ├── AudioVolumeNotificationDataStruct.cs
│ │ │ ├── Blob.cs
│ │ │ ├── ClsCtx.cs
│ │ │ ├── ErrorCodes.cs
│ │ │ ├── IAudioCaptureClient.cs
│ │ │ ├── IAudioClient.cs
│ │ │ ├── IAudioEndpointVolumeCallback.cs
│ │ │ ├── IAudioEndpointVolume.cs
│ │ │ ├── IAudioMeterInformation.cs
│ │ │ ├── IAudioRenderClient.cs
│ │ │ ├── IMMDeviceCollection.cs
│ │ │ ├── IMMDevice.cs
│ │ │ ├── IMMDeviceEnumerator.cs
│ │ │ ├── IMMEndpoint.cs
│ │ │ ├── IMMNotificationClient.cs
│ │ │ ├── IPropertyStore.cs
│ │ │ ├── MMDeviceEnumeratorComObject.cs
│ │ │ └── StorageAccessMode.cs
│ │ ├── MMDeviceCollection.cs
│ │ ├── MMDevice.cs
│ │ ├── MMDeviceEnumerator.cs
│ │ ├── PropertyKey.cs
│ │ ├── PropertyKeys.cs
│ │ ├── PropertyStore.cs
│ │ ├── PropertyStoreProperty.cs
│ │ ├── PropVariant.cs
│ │ ├── Role.cs
│ │ └── WasapiCapture.cs
│ ├── Daw
│ │ ├── MeasuresBeatsTicks.cs
│ │ └── TempoMap.cs
│ ├── Dmo
│ │ ├── AudioMediaSubtypes.cs
│ │ ├── DmoDescriptor.cs
│ │ ├── DmoEnumerator.cs
│ │ ├── DmoEnumFlags.cs
│ │ ├── DmoGuids.cs
│ │ ├── DmoHResults.cs
│ │ ├── DmoInputDataBufferFlags.cs
│ │ ├── DmoInputStatusFlags.cs
│ │ ├── DmoInterop.cs
│ │ ├── DmoMediaType.cs
│ │ ├── DmoOutputDataBuffer.cs
│ │ ├── DmoOutputDataBufferFlags.cs
│ │ ├── DmoPartialMediaType.cs
│ │ ├── DmoProcessOutputFlags.cs
│ │ ├── DmoSetTypeFlags.cs
│ │ ├── IEnumDmo.cs
│ │ ├── IMediaBuffer.cs
│ │ ├── IMediaObject.cs
│ │ ├── IMediaParamInfo.cs
│ │ ├── InputStreamInfoFlags.cs
│ │ ├── IWMResamplerProps.cs
│ │ ├── MediaBuffer.cs
│ │ ├── MediaObject.cs
│ │ ├── MediaObjectSizeInfo.cs
│ │ ├── MediaParamInfo.cs
│ │ ├── MediaTypes.cs
│ │ ├── OutputStreamInfoFlags.cs
│ │ └── ResamplerMediaObject.cs
│ ├── Dsp
│ │ ├── BiQuadFilter.cs
│ │ ├── Complex.cs
│ │ ├── EnvelopeDetector.cs
│ │ ├── FastFourierTransform.cs
│ │ ├── ImpulseResponseConvolution.cs
│ │ ├── ShiftBuffer.cs
│ │ ├── SimpleCompressor.cs
│ │ └── SimpleGate.cs
│ ├── Effects
│ │ └── Delay.cs
│ ├── FileFormats
│ │ ├── Map
│ │ │ ├── CakewalkDrumMapping.cs
│ │ │ ├── CakewalkMapFile.cs
│ │ │ └── MapBlockHeader.cs
│ │ ├── Mp3
│ │ │ ├── Id3v2Tag.cs
│ │ │ ├── Mp3Frame.cs
│ │ │ └── XingHeader.cs
│ │ ├── Ogg
│ │ │ ├── OggEncoder.cs
│ │ │ └── OggInterop.cs
│ │ ├── Sfz
│ │ │ └── SfzFileReader.cs
│ │ └── SoundFont
│ │ ├── GeneratorBuilder.cs
│ │ ├── Generator.cs
│ │ ├── GeneratorEnum.cs
│ │ ├── InfoChunk.cs
│ │ ├── InstrumentBuilder.cs
│ │ ├── Instrument.cs
│ │ ├── ModulatorBuilder.cs
│ │ ├── Modulator.cs
│ │ ├── ModulatorType.cs
│ │ ├── PresetBuilder.cs
│ │ ├── Preset.cs
│ │ ├── PresetsChunk.cs
│ │ ├── RiffChunk.cs
│ │ ├── SampleDataChunk.cs
│ │ ├── SampleHeaderBuilder.cs
│ │ ├── SampleHeader.cs
│ │ ├── SampleMode.cs
│ │ ├── SFSampleLink.cs
│ │ ├── SFVersionBuilder.cs
│ │ ├── SFVersion.cs
│ │ ├── SoundFont.cs
│ │ ├── StructureBuilder.cs
│ │ ├── ZoneBuilder.cs
│ │ └── Zone.cs
│ ├── Gui
│ │ ├── Arranger.cs
│ │ ├── Arranger.resx
│ │ ├── Fader.cs
│ │ ├── Fader.resx
│ │ ├── Graph
│ │ │ ├── Graph.cs
│ │ │ └── Graph.resx
│ │ ├── LcdPanel.cs
│ │ ├── LcdPanel.resx
│ │ ├── PanSlider.cs
│ │ ├── PanSlider.resx
│ │ ├── Pot.cs
│ │ ├── Pot.Designer.cs
│ │ ├── Pot.resx
│ │ ├── TrackView
│ │ │ ├── AudioClip.cs
│ │ │ ├── Clip.cs
│ │ │ ├── TimeLine.cs
│ │ │ ├── TimeLine.Designer.cs
│ │ │ ├── TimeLine.resx
│ │ │ ├── Track.cs
│ │ │ ├── TrackHeader.cs
│ │ │ ├── TrackHeader.Designer.cs
│ │ │ ├── TrackHeader.resx
│ │ │ ├── TrackView.cs
│ │ │ └── TrackView.Designer.cs
│ │ ├── VolumeMeter.cs
│ │ ├── VolumeMeter.Designer.cs
│ │ ├── VolumeSlider.cs
│ │ ├── VolumeSlider.resx
│ │ ├── WaveformPainter.cs
│ │ ├── WaveformPainter.Designer.cs
│ │ ├── WaveViewer.cs
│ │ └── WaveViewer.resx
│ ├── Midi
│ │ ├── ChannelAfterTouchEvent.cs
│ │ ├── ControlChangeEvent.cs
│ │ ├── KeySignatureEvent.cs
│ │ ├── MetaEvent.cs
│ │ ├── MetaEventType.cs
│ │ ├── MidiCommandCode.cs
│ │ ├── MidiController.cs
│ │ ├── MidiEventCollection.cs
│ │ ├── MidiEventComparer.cs
│ │ ├── MidiEvent.cs
│ │ ├── MidiFile.cs
│ │ ├── MidiInCapabilities.cs
│ │ ├── MidiIn.cs
│ │ ├── MidiInterop.cs
│ │ ├── MidiMessage.cs
│ │ ├── MidiOutCapabilities.cs
│ │ ├── MidiOut.cs
│ │ ├── MidiOutTechnology.cs
│ │ ├── NoteEvent.cs
│ │ ├── NoteOnEvent.cs
│ │ ├── PatchChangeEvent.cs
│ │ ├── PitchWheelChangeEvent.cs
│ │ ├── SmpteOffsetEvent.cs
│ │ ├── SysexEvent.cs
│ │ ├── TempoEvent.cs
│ │ ├── TextEvent.cs
│ │ ├── TimeSignatureEvent.cs
│ │ └── TrackSequenceNumberEvent.cs
│ ├── Mixer
│ │ ├── BooleanMixerControl.cs
│ │ ├── CustomMixerControl.cs
│ │ ├── ListTextMixerControl.cs
│ │ ├── MixerControl.cs
│ │ ├── MixerControlType.cs
│ │ ├── Mixer.cs
│ │ ├── MixerFlags.cs
│ │ ├── MixerInterop.cs
│ │ ├── MixerLineComponentType.cs
│ │ ├── MixerLine.cs
│ │ ├── MixerSource.cs
│ │ ├── SignedMixerControl.cs
│ │ └── UnsignedMixerControl.cs
│ ├── NAudio.csproj
│ ├── NAudio.csproj.vspscc
│ ├── obj
│ │ └── Debug
│ │ ├── NAudio.csproj.FileListAbsolute.txt
│ │ ├── NAudio.csproj.GenerateResource.Cache
│ │ ├── NAudio.dll
│ │ ├── NAudio.Gui.Arranger.resources
│ │ ├── NAudio.Gui.Fader.resources
│ │ ├── NAudio.Gui.Graph.resources
│ │ ├── NAudio.Gui.LcdPanel.resources
│ │ ├── NAudio.Gui.PanSlider.resources
│ │ ├── NAudio.Gui.Pot.resources
│ │ ├── NAudio.Gui.TrackView.TimeLine.resources
│ │ ├── NAudio.Gui.TrackView.TrackHeader.resources
│ │ ├── NAudio.Gui.VolumeSlider.resources
│ │ ├── NAudio.Gui.WaveViewer.resources
│ │ ├── NAudio.pdb
│ │ ├── NAudio.Utils.AboutForm.resources
│ │ ├── NAudio.Utils.ProgressLog.resources
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Utils
│ │ ├── AboutForm.cs
│ │ ├── AboutForm.Designer.cs
│ │ ├── AboutForm.resx
│ │ ├── ByteEncoding.cs
│ │ ├── CircularBuffer.cs
│ │ ├── Decibels.cs
│ │ ├── FileAssociations.cs
│ │ ├── HResult.cs
│ │ ├── MergeSort.cs
│ │ ├── ProgressEventArgs.cs
│ │ ├── ProgressLog.cs
│ │ ├── ProgressLog.Designer.cs
│ │ └── ProgressLog.resx
│ └── Wave
│ ├── Asio
│ │ ├── ASIODriver.cs
│ │ ├── ASIODriverExt.cs
│ │ ├── ASIOSampleConvertor.cs
│ │ └── ASIOStructures.cs
│ ├── Compression
│ │ ├── AcmDriver.cs
│ │ ├── AcmDriverDetails.cs
│ │ ├── AcmDriverDetailsSupportFlags.cs
│ │ ├── AcmDriverEnumFlags.cs
│ │ ├── AcmFormatChoose.cs
│ │ ├── AcmFormatChooseStyleFlags.cs
│ │ ├── AcmFormat.cs
│ │ ├── AcmFormatDetails.cs
│ │ ├── AcmFormatEnumFlags.cs
│ │ ├── AcmFormatSuggestFlags.cs
│ │ ├── AcmFormatTag.cs
│ │ ├── AcmFormatTagDetails.cs
│ │ ├── AcmInterop.cs
│ │ ├── AcmMetrics.cs
│ │ ├── AcmStreamConvertFlags.cs
│ │ ├── AcmStream.cs
│ │ ├── AcmStreamHeader.cs
│ │ ├── AcmStreamHeaderStatusFlags.cs
│ │ ├── AcmStreamHeaderStruct.cs
│ │ ├── AcmStreamOpenFlags.cs
│ │ ├── AcmStreamSizeFlags.cs
│ │ └── WaveFilter.cs
│ ├── MmeInterop
│ │ ├── Manufacturers.cs
│ │ ├── MmException.cs
│ │ ├── MmResult.cs
│ │ ├── WaveCallbackInfo.cs
│ │ ├── WaveCallbackStrategy.cs
│ │ ├── WaveHeader.cs
│ │ ├── WaveHeaderFlags.cs
│ │ ├── WaveInCapabilities.cs
│ │ ├── WaveIn.cs
│ │ ├── WaveInEventArgs.cs
│ │ ├── WaveInterop.cs
│ │ ├── WaveOutCapabilities.cs
│ │ ├── WaveOutSupport.cs
│ │ └── WaveWindow.cs
│ ├── WaveFormats
│ │ ├── AdpcmWaveFormat.cs
│ │ ├── ImaAdpcmWaveFormat.cs
│ │ ├── Mp3WaveFormat.cs
│ │ ├── OggWaveFormat.cs
│ │ ├── WaveFormat.cs
│ │ ├── WaveFormatCustomMarshaler.cs
│ │ ├── WaveFormatEncoding.cs
│ │ ├── WaveFormatExtensible.cs
│ │ ├── WaveFormatExtraData.cs
│ │ └── WmaWaveFormat.cs
│ ├── WaveInputs
│ │ └── IWaveIn.cs
│ ├── WaveOutputs
│ │ ├── AsioOut.cs
│ │ ├── DirectSoundOut.cs
│ │ ├── IWaveBuffer.cs
│ │ ├── IWavePlayer.cs
│ │ ├── IWaveProvider.cs
│ │ ├── PlaybackState.cs
│ │ ├── WasapiOut.cs
│ │ ├── WaveBuffer.cs
│ │ ├── WaveFileWriter.cs
│ │ ├── WaveOut.cs
│ │ └── WaveOutThreadSafe.cs
│ ├── WaveProviders
│ │ ├── WaveProvider16.cs
│ │ ├── WaveProvider32.cs
│ │ └── WaveRecorder.cs
│ └── WaveStreams
│ ├── BlockAlignReductionStream.cs
│ ├── ISampleNotifier.cs
│ ├── Mp3FileReader.cs
│ ├── ResamplerDmoStream.cs
│ ├── RiffChunk.cs
│ ├── SimpleCompressorStream.cs
│ ├── Wave32To16Stream.cs
│ ├── WaveChannel32.cs
│ ├── WaveFileReader.cs
│ ├── WaveFormatConversionStream.cs
│ ├── WaveInBuffer.cs
│ ├── WaveInStream.cs
│ ├── WaveMixerStream32.cs
│ ├── WaveOffsetStream.cs
│ ├── WaveOutBuffer.cs
│ └── WaveStream.cs
├── NAudioDemo
│ ├── AcmDriverDetailsForm.cs
│ ├── AcmDriverDetailsForm.Designer.cs
│ ├── AcmDriverDetailsForm.resx
│ ├── AcmForm.cs
│ ├── AcmForm.Designer.cs
│ ├── AcmForm.resx
│ ├── app.config
│ ├── AudioPlaybackForm.cs
│ ├── AudioPlaybackForm.Designer.cs
│ ├── AudioPlaybackForm.resx
│ ├── bin
│ │ └── Debug
│ │ ├── NAudioDemo.exe
│ │ ├── NAudioDemo.exe.config
│ │ ├── NAudioDemo.pdb
│ │ ├── NAudioDemo.vshost.exe
│ │ ├── NAudioDemo.vshost.exe.config
│ │ ├── NAudioDemo.vshost.exe.manifest
│ │ ├── NAudio.dll
│ │ ├── NAudio.pdb
│ │ └── NAudio.xml
│ ├── Images.Designer.cs
│ ├── Images.resx
│ ├── LoopStream.cs
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── MeteringStream.cs
│ ├── MidiInForm.cs
│ ├── MidiInForm.Designer.cs
│ ├── MidiInForm.resx
│ ├── NAudioDemo.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── NAudioDemo.AcmDriverDetailsForm.resources
│ │ ├── NAudioDemo.AcmForm.resources
│ │ ├── NAudioDemo.AudioPlaybackForm.resources
│ │ ├── NAudioDemo.csproj.FileListAbsolute.txt
│ │ ├── NAudioDemo.csproj.GenerateResource.Cache
│ │ ├── NAudioDemo.exe
│ │ ├── NAudioDemo.Images.resources
│ │ ├── NAudioDemo.MainForm.resources
│ │ ├── NAudioDemo.MidiInForm.resources
│ │ ├── NAudioDemo.pdb
│ │ ├── NAudioDemo.Properties.Resources.resources
│ │ ├── NAudioDemo.RecordingForm.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RecordingForm.cs
│ ├── RecordingForm.Designer.cs
│ ├── RecordingForm.resx
│ └── Resources
│ ├── Back.png
│ ├── Forward.png
│ ├── Loop.png
│ ├── Open.png
│ ├── Pause.png
│ ├── Play.png
│ ├── Rewind.png
│ ├── Shuffle.png
│ └── Stop.png
├── NAudio.sln
├── NAudio.suo
├── NAudioTests
│ ├── Acm
│ │ ├── AcmDriverTests.cs
│ │ └── WaveFormatConversionStreamTests.cs
│ ├── bin
│ │ └── Debug
│ │ ├── NAudio.dll
│ │ ├── NAudio.pdb
│ │ ├── NAudioTests.dll
│ │ ├── NAudioTests.pdb
│ │ ├── NAudio.WindowsMediaFormat.dll
│ │ ├── NAudio.WindowsMediaFormat.pdb
│ │ ├── NAudio.xml
│ │ └── nunit.framework.dll
│ ├── Dmo
│ │ ├── DmoTests.cs
│ │ ├── ResamplerDmoStreamTests.cs
│ │ └── ResamplerDmoTests.cs
│ ├── Midi
│ │ └── MidiEventCollectionTest.cs
│ ├── Mixer
│ │ └── MixerApiTests.cs
│ ├── NAudioTests.csproj
│ ├── NAudioTests.csproj.vspscc
│ ├── NAudioTests.nunit
│ ├── obj
│ │ └── Debug
│ │ ├── NAudioTests.csproj.FileListAbsolute.txt
│ │ ├── NAudioTests.dll
│ │ ├── NAudioTests.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Utils
│ │ ├── BlockAlignedWaveStream.cs
│ │ └── NullWaveStream.cs
│ ├── Wasapi
│ │ ├── AudioClientTests.cs
│ │ └── MMDeviceEnumeratorTests.cs
│ ├── WaveFormats
│ │ └── AdpcmWaveFormatTests.cs
│ ├── WaveIn
│ │ └── WaveInDevicesTests.cs
│ ├── WaveStreams
│ │ ├── BlockAlignmentReductionStreamTests.cs
│ │ └── CircularBufferTests.cs
│ └── WindowsMedia
│ └── WindowsMediaTests.cs
├── NAudio.WindowsMediaFormat
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── NAudio.WindowsMediaFormat.dll
│ │ ├── NAudio.WindowsMediaFormat.dll.config
│ │ └── NAudio.WindowsMediaFormat.pdb
│ ├── Enums.cs
│ ├── Functions.cs
│ ├── Interfaces.cs
│ ├── NAudio.WindowsMediaFormat.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── NAudio.WindowsMediaFormat.csproj.FileListAbsolute.txt
│ │ ├── NAudio.WindowsMediaFormat.dll
│ │ ├── NAudio.WindowsMediaFormat.pdb
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Structures.cs
└── NAudioWpfDemo
├── App.xaml
├── App.xaml.cs
├── AudioCapture.cs
├── AudioGraph.cs
├── AudioPlayback.cs
├── bin
│ └── Debug
│ ├── NAudio.dll
│ ├── NAudio.pdb
│ ├── NAudioWpfDemo.exe
│ ├── NAudioWpfDemo.pdb
│ ├── NAudioWpfDemo.vshost.exe
│ ├── NAudioWpfDemo.vshost.exe.manifest
│ └── NAudio.xml
├── ControlPanelViewModel.cs
├── ControlPanel.xaml
├── ControlPanel.xaml.cs
├── IgnoreDisposeStream.cs
├── IWaveFormRenderer.cs
├── MainWindow.xaml
├── MainWindow.xaml.cs
├── NAudioWpfDemo.csproj
├── obj
│ └── Debug
│ ├── App.g.cs
│ ├── ControlPanel.baml
│ ├── ControlPanel.g.cs
│ ├── GeneratedInternalTypeHelper.g.cs
│ ├── MainWindow.baml
│ ├── MainWindow.g.cs
│ ├── NAudioWpfDemo.csproj.FileListAbsolute.txt
│ ├── NAudioWpfDemo.csproj.GenerateResource.Cache
│ ├── NAudioWpfDemo.exe
│ ├── NAudioWpfDemo.g.resources
│ ├── NAudioWpfDemo_MarkupCompile.cache
│ ├── NAudioWpfDemo_MarkupCompile.lref
│ ├── NAudioWpfDemo.pdb
│ ├── NAudioWpfDemo.Properties.Resources.resources
│ ├── PolygonWaveFormControl.baml
│ ├── PolygonWaveFormControl.g.cs
│ ├── PolylineWaveFormControl.baml
│ ├── PolylineWaveFormControl.g.cs
│ ├── ResolveAssemblyReference.cache
│ ├── SpectrumAnalyser.baml
│ ├── SpectrumAnalyser.g.cs
│ ├── TempPE
│ ├── WaveFormControl.baml
│ └── WaveFormControl.g.cs
├── PolygonWaveFormControl.xaml
├── PolygonWaveFormControl.xaml.cs
├── PolylineWaveFormControl.xaml
├── PolylineWaveFormControl.xaml.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── RelayCommand.cs
├── SampleAggregator.cs
├── SpectrumAnalyser.xaml
├── SpectrumAnalyser.xaml.cs
├── WaveFormControl.xaml
├── WaveFormControl.xaml.cs
└── WaveformVisual.cs
108 directories, 622 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论