实例介绍
NAudio 1.3 在源来的基础上,把几个项目放到 vs2005下了 当然,你也可以到官网上下
【实例截图】
【核心代码】
.
├── NAudio-1-3
│ ├── Binaries
│ │ └── NAudio.dll
│ ├── Sample Apps
│ │ ├── Audio File Inspector
│ │ │ ├── AudioFileInspector.exe
│ │ │ ├── NAudio.dll
│ │ │ ├── System.ComponentModel.Composition.dll
│ │ │ └── audio_file_inspector.html
│ │ ├── MixDiff
│ │ │ ├── MixDiff.exe
│ │ │ └── NAudio.dll
│ │ ├── NAudio Demo
│ │ │ ├── NAudio.dll
│ │ │ ├── NAudioDemo.exe
│ │ │ └── NAudioDemo.exe.config
│ │ └── NAudio WPF Demo
│ │ ├── NAudio.dll
│ │ └── NAudioWpfDemo.exe
│ └── Source Code
│ ├── AudioFileInspector
│ │ ├── AudioFileInspector.csproj
│ │ ├── AudioFileInspectorForm.Designer.cs
│ │ ├── AudioFileInspectorForm.cs
│ │ ├── AudioFileInspectorForm.resx
│ │ ├── FileInspectors
│ │ │ ├── CakewalkMapInspector.cs
│ │ │ ├── MidiFileInspector.cs
│ │ │ ├── SoundFontInspector.cs
│ │ │ └── WaveFileInspector.cs
│ │ ├── FindForm.Designer.cs
│ │ ├── FindForm.cs
│ │ ├── FindForm.resx
│ │ ├── IAudioFileInspector.cs
│ │ ├── InstallScript.nsi
│ │ ├── OptionsForm.Designer.cs
│ │ ├── OptionsForm.cs
│ │ ├── OptionsForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── audio_file_inspector.html
│ ├── Lib
│ │ ├── MEF
│ │ │ └── System.ComponentModel.Composition.dll
│ │ └── NUnit
│ │ └── nunit.framework.dll
│ ├── MidiFileConverter
│ │ ├── AdvancedOptionsForm.Designer.cs
│ │ ├── AdvancedOptionsForm.cs
│ │ ├── AdvancedOptionsForm.resx
│ │ ├── InstallScript.nsi
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.cs
│ │ ├── MainForm.resx
│ │ ├── MidiConverter.cs
│ │ ├── MidiFileConverter.csproj
│ │ ├── MidiFileConverter.csproj.vspscc
│ │ ├── NamingRule.cs
│ │ ├── NamingRules.xml
│ │ ├── OutputMidiType.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── app.config
│ │ └── midi_file_converter.html
│ ├── Misc
│ │ ├── Audioclient.h
│ │ ├── audiopolicy.h
│ │ ├── audiosessiontypes.h
│ │ └── mmdeviceapi.h
│ ├── MixDiff
│ │ ├── Images.Designer.cs
│ │ ├── Images.resx
│ │ ├── MixDiff.csproj
│ │ ├── MixDiff.csproj.vspscc
│ │ ├── MixDiffForm.Designer.cs
│ │ ├── MixDiffForm.cs
│ │ ├── MixDiffForm.resx
│ │ ├── MixDiffStream.cs
│ │ ├── MixdownInfo.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PropertiesForm.Designer.cs
│ │ ├── PropertiesForm.cs
│ │ ├── PropertiesForm.resx
│ │ ├── Resources
│ │ │ ├── Back.png
│ │ │ ├── Forward.png
│ │ │ ├── Loop.png
│ │ │ ├── Pause.png
│ │ │ ├── Play.png
│ │ │ ├── Rewind.png
│ │ │ ├── Shuffle.png
│ │ │ └── Stop.png
│ │ ├── SettingsForm.Designer.cs
│ │ ├── SettingsForm.cs
│ │ ├── SettingsForm.resx
│ │ └── app.config
│ ├── NAudio
│ │ ├── Changes.xml
│ │ ├── CoreAudioApi
│ │ │ ├── AudioCaptureClient.cs
│ │ │ ├── AudioClient.cs
│ │ │ ├── AudioClientBufferFlags.cs
│ │ │ ├── AudioClientShareMode.cs
│ │ │ ├── AudioClientStreamFlags.cs
│ │ │ ├── AudioEndpointVolume.cs
│ │ │ ├── AudioEndpointVolumeCallback.cs
│ │ │ ├── AudioEndpointVolumeChannel.cs
│ │ │ ├── AudioEndpointVolumeChannels.cs
│ │ │ ├── AudioEndpointVolumeNotificationDelegate.cs
│ │ │ ├── AudioEndpointVolumeStepInformation.cs
│ │ │ ├── AudioEndpointVolumeVolumeRange.cs
│ │ │ ├── AudioMeterInformation.cs
│ │ │ ├── AudioMeterInformationChannels.cs
│ │ │ ├── AudioRenderClient.cs
│ │ │ ├── AudioVolumeNotificationData.cs
│ │ │ ├── DataFlow.cs
│ │ │ ├── DeviceState.cs
│ │ │ ├── EEndpointHardwareSupport.cs
│ │ │ ├── Interfaces
│ │ │ │ ├── AudioVolumeNotificationDataStruct.cs
│ │ │ │ ├── Blob.cs
│ │ │ │ ├── ClsCtx.cs
│ │ │ │ ├── ErrorCodes.cs
│ │ │ │ ├── IAudioCaptureClient.cs
│ │ │ │ ├── IAudioClient.cs
│ │ │ │ ├── IAudioEndpointVolume.cs
│ │ │ │ ├── IAudioEndpointVolumeCallback.cs
│ │ │ │ ├── IAudioMeterInformation.cs
│ │ │ │ ├── IAudioRenderClient.cs
│ │ │ │ ├── IMMDevice.cs
│ │ │ │ ├── IMMDeviceCollection.cs
│ │ │ │ ├── IMMDeviceEnumerator.cs
│ │ │ │ ├── IMMEndpoint.cs
│ │ │ │ ├── IMMNotificationClient.cs
│ │ │ │ ├── IPropertyStore.cs
│ │ │ │ ├── MMDeviceEnumeratorComObject.cs
│ │ │ │ └── StorageAccessMode.cs
│ │ │ ├── MMDevice.cs
│ │ │ ├── MMDeviceCollection.cs
│ │ │ ├── MMDeviceEnumerator.cs
│ │ │ ├── PropVariant.cs
│ │ │ ├── PropertyKey.cs
│ │ │ ├── PropertyKeys.cs
│ │ │ ├── PropertyStore.cs
│ │ │ ├── PropertyStoreProperty.cs
│ │ │ ├── Role.cs
│ │ │ └── WasapiCapture.cs
│ │ ├── Daw
│ │ │ ├── MeasuresBeatsTicks.cs
│ │ │ └── TempoMap.cs
│ │ ├── Dmo
│ │ │ ├── AudioMediaSubtypes.cs
│ │ │ ├── DmoDescriptor.cs
│ │ │ ├── DmoEnumFlags.cs
│ │ │ ├── DmoEnumerator.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
│ │ │ ├── IWMResamplerProps.cs
│ │ │ ├── InputStreamInfoFlags.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
│ │ │ ├── Generator.cs
│ │ │ ├── GeneratorBuilder.cs
│ │ │ ├── GeneratorEnum.cs
│ │ │ ├── InfoChunk.cs
│ │ │ ├── Instrument.cs
│ │ │ ├── InstrumentBuilder.cs
│ │ │ ├── Modulator.cs
│ │ │ ├── ModulatorBuilder.cs
│ │ │ ├── ModulatorType.cs
│ │ │ ├── Preset.cs
│ │ │ ├── PresetBuilder.cs
│ │ │ ├── PresetsChunk.cs
│ │ │ ├── RiffChunk.cs
│ │ │ ├── SFSampleLink.cs
│ │ │ ├── SFVersion.cs
│ │ │ ├── SFVersionBuilder.cs
│ │ │ ├── SampleDataChunk.cs
│ │ │ ├── SampleHeader.cs
│ │ │ ├── SampleHeaderBuilder.cs
│ │ │ ├── SampleMode.cs
│ │ │ ├── SoundFont.cs
│ │ │ ├── StructureBuilder.cs
│ │ │ ├── Zone.cs
│ │ │ └── ZoneBuilder.cs
│ │ ├── Gui
│ │ │ ├── Arranger.cs
│ │ │ ├── Arranger.resx
│ │ │ ├── Fader.cs
│ │ │ ├── Fader.resx
│ │ │ ├── Graph
│ │ │ │ ├── Graph.cs
│ │ │ │ └── Graph.resx
│ │ │ ├── LcdPanel.cs
│ │ │ ├── LcdPanel.resx
│ │ │ ├── PanSlider.cs
│ │ │ ├── PanSlider.resx
│ │ │ ├── Pot.Designer.cs
│ │ │ ├── Pot.cs
│ │ │ ├── Pot.resx
│ │ │ ├── TrackView
│ │ │ │ ├── AudioClip.cs
│ │ │ │ ├── Clip.cs
│ │ │ │ ├── TimeLine.Designer.cs
│ │ │ │ ├── TimeLine.cs
│ │ │ │ ├── TimeLine.resx
│ │ │ │ ├── Track.cs
│ │ │ │ ├── TrackHeader.Designer.cs
│ │ │ │ ├── TrackHeader.cs
│ │ │ │ ├── TrackHeader.resx
│ │ │ │ ├── TrackView.Designer.cs
│ │ │ │ └── TrackView.cs
│ │ │ ├── VolumeMeter.Designer.cs
│ │ │ ├── VolumeMeter.cs
│ │ │ ├── VolumeSlider.cs
│ │ │ ├── VolumeSlider.resx
│ │ │ ├── WaveViewer.cs
│ │ │ ├── WaveViewer.resx
│ │ │ ├── WaveformPainter.Designer.cs
│ │ │ └── WaveformPainter.cs
│ │ ├── Midi
│ │ │ ├── ChannelAfterTouchEvent.cs
│ │ │ ├── ControlChangeEvent.cs
│ │ │ ├── KeySignatureEvent.cs
│ │ │ ├── MetaEvent.cs
│ │ │ ├── MetaEventType.cs
│ │ │ ├── MidiCommandCode.cs
│ │ │ ├── MidiController.cs
│ │ │ ├── MidiEvent.cs
│ │ │ ├── MidiEventCollection.cs
│ │ │ ├── MidiEventComparer.cs
│ │ │ ├── MidiFile.cs
│ │ │ ├── MidiIn.cs
│ │ │ ├── MidiInCapabilities.cs
│ │ │ ├── MidiInterop.cs
│ │ │ ├── MidiMessage.cs
│ │ │ ├── MidiOut.cs
│ │ │ ├── MidiOutCapabilities.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
│ │ │ ├── Mixer.cs
│ │ │ ├── MixerControl.cs
│ │ │ ├── MixerControlType.cs
│ │ │ ├── MixerFlags.cs
│ │ │ ├── MixerInterop.cs
│ │ │ ├── MixerLine.cs
│ │ │ ├── MixerLineComponentType.cs
│ │ │ ├── MixerSource.cs
│ │ │ ├── SignedMixerControl.cs
│ │ │ └── UnsignedMixerControl.cs
│ │ ├── NAudio.csproj
│ │ ├── NAudio.csproj.vspscc
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Utils
│ │ │ ├── AboutForm.Designer.cs
│ │ │ ├── AboutForm.cs
│ │ │ ├── AboutForm.resx
│ │ │ ├── ByteEncoding.cs
│ │ │ ├── CircularBuffer.cs
│ │ │ ├── Decibels.cs
│ │ │ ├── FileAssociations.cs
│ │ │ ├── HResult.cs
│ │ │ ├── MergeSort.cs
│ │ │ ├── ProgressEventArgs.cs
│ │ │ ├── ProgressLog.Designer.cs
│ │ │ ├── ProgressLog.cs
│ │ │ └── ProgressLog.resx
│ │ ├── Wave
│ │ │ ├── Asio
│ │ │ │ ├── ASIODriver.cs
│ │ │ │ ├── ASIODriverExt.cs
│ │ │ │ ├── ASIOSampleConvertor.cs
│ │ │ │ └── ASIOStructures.cs
│ │ │ ├── Compression
│ │ │ │ ├── AcmDriver.cs
│ │ │ │ ├── AcmDriverDetails.cs
│ │ │ │ ├── AcmDriverDetailsSupportFlags.cs
│ │ │ │ ├── AcmDriverEnumFlags.cs
│ │ │ │ ├── AcmFormat.cs
│ │ │ │ ├── AcmFormatChoose.cs
│ │ │ │ ├── AcmFormatChooseStyleFlags.cs
│ │ │ │ ├── AcmFormatDetails.cs
│ │ │ │ ├── AcmFormatEnumFlags.cs
│ │ │ │ ├── AcmFormatSuggestFlags.cs
│ │ │ │ ├── AcmFormatTag.cs
│ │ │ │ ├── AcmFormatTagDetails.cs
│ │ │ │ ├── AcmInterop.cs
│ │ │ │ ├── AcmMetrics.cs
│ │ │ │ ├── AcmStream.cs
│ │ │ │ ├── AcmStreamConvertFlags.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
│ │ │ │ ├── WaveIn.cs
│ │ │ │ ├── WaveInCapabilities.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
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── NAudio.XML
│ │ │ ├── NAudio.dll
│ │ │ └── NAudio.pdb
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── 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.Utils.AboutForm.resources
│ │ │ ├── NAudio.Utils.ProgressLog.resources
│ │ │ ├── NAudio.csproj.GenerateResource.Cache
│ │ │ ├── NAudio.dll
│ │ │ ├── NAudio.pdb
│ │ │ └── TempPE
│ │ └── NAudio.csproj.FileListAbsolute.txt
│ ├── NAudio.WindowsMediaFormat
│ │ ├── Enums.cs
│ │ ├── Functions.cs
│ │ ├── Interfaces.cs
│ │ ├── NAudio.WindowsMediaFormat.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Structures.cs
│ │ └── app.config
│ ├── NAudio.sln
│ ├── NAudio2005.sln
│ ├── NAudio2005.suo
│ ├── NAudioDemo
│ │ ├── AcmDriverDetailsForm.Designer.cs
│ │ ├── AcmDriverDetailsForm.cs
│ │ ├── AcmDriverDetailsForm.resx
│ │ ├── AcmForm.Designer.cs
│ │ ├── AcmForm.cs
│ │ ├── AcmForm.resx
│ │ ├── AudioPlaybackForm.Designer.cs
│ │ ├── AudioPlaybackForm.cs
│ │ ├── AudioPlaybackForm.resx
│ │ ├── Images.Designer.cs
│ │ ├── Images.resx
│ │ ├── LoopStream.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.cs
│ │ ├── MainForm.resx
│ │ ├── MeteringStream.cs
│ │ ├── MidiInForm.Designer.cs
│ │ ├── MidiInForm.cs
│ │ ├── MidiInForm.resx
│ │ ├── NAudioDemo.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── RecordingForm.Designer.cs
│ │ ├── RecordingForm.cs
│ │ ├── RecordingForm.resx
│ │ ├── Resources
│ │ │ ├── Back.png
│ │ │ ├── Forward.png
│ │ │ ├── Loop.png
│ │ │ ├── Open.png
│ │ │ ├── Pause.png
│ │ │ ├── Play.png
│ │ │ ├── Rewind.png
│ │ │ ├── Shuffle.png
│ │ │ └── Stop.png
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── NAudio.dll
│ │ │ ├── NAudio.pdb
│ │ │ ├── NAudio.xml
│ │ │ ├── NAudioDemo.exe
│ │ │ ├── NAudioDemo.exe.config
│ │ │ ├── NAudioDemo.pdb
│ │ │ ├── NAudioDemo.vshost.exe
│ │ │ └── NAudioDemo.vshost.exe.config
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── NAudioDemo.AcmDriverDetailsForm.resources
│ │ │ ├── NAudioDemo.AcmForm.resources
│ │ │ ├── NAudioDemo.AudioPlaybackForm.resources
│ │ │ ├── NAudioDemo.Images.resources
│ │ │ ├── NAudioDemo.MainForm.resources
│ │ │ ├── NAudioDemo.MidiInForm.resources
│ │ │ ├── NAudioDemo.Properties.Resources.resources
│ │ │ ├── NAudioDemo.RecordingForm.resources
│ │ │ ├── NAudioDemo.csproj.GenerateResource.Cache
│ │ │ ├── NAudioDemo.exe
│ │ │ ├── NAudioDemo.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── NAudioDemo.csproj.FileListAbsolute.txt
│ ├── NAudioTests
│ │ ├── Acm
│ │ │ ├── AcmDriverTests.cs
│ │ │ └── WaveFormatConversionStreamTests.cs
│ │ ├── Dmo
│ │ │ ├── DmoTests.cs
│ │ │ ├── ResamplerDmoStreamTests.cs
│ │ │ └── ResamplerDmoTests.cs
│ │ ├── Midi
│ │ │ └── MidiEventCollectionTest.cs
│ │ ├── Mixer
│ │ │ └── MixerApiTests.cs
│ │ ├── NAudioTests.csproj
│ │ ├── NAudioTests.csproj.vspscc
│ │ ├── NAudioTests.nunit
│ │ ├── 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
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── NAudio.dll
│ │ │ ├── NAudio.pdb
│ │ │ ├── NAudio.xml
│ │ │ ├── NAudioTests.dll
│ │ │ ├── NAudioTests.pdb
│ │ │ └── nunit.framework.dll
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── NAudioTests.dll
│ │ │ ├── NAudioTests.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── NAudioTests.csproj.FileListAbsolute.txt
│ └── NAudioWpfDemo
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AudioCapture.cs
│ ├── AudioGraph.cs
│ ├── AudioPlayback.cs
│ ├── ControlPanel.xaml
│ ├── ControlPanel.xaml.cs
│ ├── ControlPanelViewModel.cs
│ ├── IWaveFormRenderer.cs
│ ├── IgnoreDisposeStream.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── NAudioWpfDemo.csproj
│ ├── 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
├── NAudio1.3- C# audio,_NAudio-1-3.rar
└── WaveLibMixer.suo
83 directories, 532 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论