New Post: Cutting wave
Can you give me some more pieces of advice? How to obtain how many miliseconds are represented by pixel? And what is the issue with left-most sample?
View ArticleNew Post: Simple waveform visualizing
Thank you, but I can't figure out where to get the waveWriter or memstream..
View ArticleNew Post: Simple waveform visualizing
they are instances of WaveFileWriter (part of NAudio) and MemoryStream (part of .NET framework)
View ArticleNew Post: Stop or Dispose methods hang if USB device undocked while playing...
Just wanted to post in case it is useful to other users. Replacing WaveOut with WaveOutEvent in one of our classes fixed a similar deadlock situation we were experiencing when playing a wav file...
View ArticleNew Post: Cutting wave
you dont have to calc ms. you have to calculate the bytes because you just have to copy a part of the stream.
View ArticleNew Post: Cutting wave
The code that I found shows trimming using timespan. What's more, I can zoom in and zoom out the waveform. So now, I don't know how to do the cut.
View ArticleNew Post: Problem Converting To GSM610
I've been trying in my application to convert a PCM file to GSM610 format using the following error. "AcmNotPossible calling acmStreamOpen" I had a look though the earlier discussion and its been...
View ArticleNew Post: Problem Converting To GSM610
not all conversions can be performed in one step. Probably it is the sample rate. Try downsampling to 8kHz PCM first.
View ArticleNew Post: Problem Converting To GSM610
thanks for the fast reply. I've just gone though using the demo app converting it to all the pcm options then trying to converter them to gsm610. I can the same error for all of them
View ArticleNew Post: Problem Converting To GSM610
what exactly is the format of the file you are trying to convert to GSM? It probably needs to be mono, 8kHz, 16 bit
View ArticleNew Post: Problem Converting To GSM610
I'm trying from mono 8khz 16bit to GSM 6.10 8khz mono
View ArticleSource code checked in, #f15b06cd560a
improvements to MixingSampleProvider and easier access to conversion from IWaveProvider to SampleProvider
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
I have a question and comment, about a big problem i see on the library related to MIDI IN.When reciv MIDI NOTES, naudio show the incming notes with letters notes instead show 0 to 127 number.This is...
View ArticleNew Post: Problem Converting To GSM610
that should work, can you post a code snippet of your call into WaveFormatConversionStream?
View ArticleNew Post: Stop or Dispose methods hang if USB device undocked while playing...
glad you got it working in the end. the function callbacks have been nothing but trouble and I may even depracate them in the future
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
I see exactly same problem with MIDI CC.Example instead retrun value like this:0 ControlChange Ch:10 Controller 1 Value 127 Righ now midievent report: 0 ControlChange Ch:10 Modulation Value...
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
just cast it to an int, that is all you need to do
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
Mark plese swhome how : )Im 100% lossed in this.Whe is ayshowme how i mena exactly show, im not lazy, just not super good with coding im are relative new in the world of programation, Thank you
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
if e.MidiEvent is an instance of NoteEvent, cast it to a NoteEvent, and then you have access to the NoteNumber property which is an int if e.MidiEvent is an instance of ControlChangeEvent, cast it to a...
View Article