Mark Heath
Mark Heath
A big thank you from me too. I always dreamed of adding something like this to NAudio but never had the time (there is a semi-complete SoundFont parser in there,...
I'm seeing this too, with a malformed XML comment like this being the cause of one of the problems: ``` // /// note only two forward slashes before the start...
I'm still seeing this issue. I've narrowed it down to `MemberDocumentationFactory.Create` the call to `XDocument.Parse` will throw an `XmlException` if the XML documentation is malformed. I still can't work out...
Yes, basically anything wrong with the XML, including having lines starting with just two forward slashes `//` somewhere in the comment, My suggested behaviour is simply to catch the `XmlException`...
OK, will try to get something done. If returning the raw string is possible that would be even better.
`MemberDocumentationFactory.Create` returns an `IMemberDocumentation`, so I could return one with the malformed comment just placed into the `Summary` property perhaps. Would that be acceptable?
yes can do that. I'll try to put together a PR next week.
sorry it's been a while. This looks good, but will need to get conflicts resolved.
what is the format of the input wav file? What are the values of "newFormat" and "mulaw"? Try saving a WAV file after the first conversion stage to narrow down...
OK so first you must downsample to 8kHz (and stereo to mono). Then you can go to mu-law. This article explains more about [multi-stage conversions](https://www.codeproject.com/articles/501521/how-to-convert-between-most-audio-formats-in-net)