Re: Announcing audio-formats v1.0.0

2020-03-18 Thread Adam D. Ruppe via Digitalmars-d-announce
On Wednesday, 18 March 2020 at 21:24:55 UTC, ketmar wrote: tbh, i didn't really tested stb much (if at all). I stole your code in my repo and use it with simpleaudio... i haven't used it super extensively (nor is it in my dub file btw) but what I have done with it works beautifully fine.

Re: Announcing audio-formats v1.0.0

2020-03-18 Thread ketmar via Digitalmars-d-announce
Guillaume Piolat wrote: Any input concerning stb_vorbis vs Tremor? Tremor is twice the code size and I'm not sure the one to be favoured. tbh, i didn't really tested stb much (if at all). it *should* work, but... my audio player was based on tremor, so it is better tested. maybe just make

Re: Announcing audio-formats v1.0.0

2020-03-18 Thread Guillaume Piolat via Digitalmars-d-announce
On Wednesday, 18 March 2020 at 20:25:45 UTC, ketmar wrote: Guillaume Piolat wrote: On Wednesday, 18 March 2020 at 18:49:23 UTC, ketmar wrote: glad you found it useful! but why only that? there is GPL Opus decoder too, and two decoders for Ogg/Vorbis: stb and complete port of the official

Re: Announcing audio-formats v1.0.0

2020-03-18 Thread ketmar via Digitalmars-d-announce
Guillaume Piolat wrote: On Wednesday, 18 March 2020 at 18:49:23 UTC, ketmar wrote: glad you found it useful! but why only that? there is GPL Opus decoder too, and two decoders for Ogg/Vorbis: stb and complete port of the official Xyph tremor library. also, you can find a resampler there,

Re: Announcing audio-formats v1.0.0

2020-03-18 Thread Guillaume Piolat via Digitalmars-d-announce
On Wednesday, 18 March 2020 at 18:49:23 UTC, ketmar wrote: glad you found it useful! but why only that? there is GPL Opus decoder too, and two decoders for Ogg/Vorbis: stb and complete port of the official Xyph tremor library. also, you can find a resampler there, taken from Speex. are you

Re: Announcing audio-formats v1.0.0

2020-03-18 Thread ketmar via Digitalmars-d-announce
Guillaume Piolat wrote: On Wednesday, 18 March 2020 at 18:41:11 UTC, Guillaume Piolat wrote: audio-formats is a new pure D #DUB package that allows to decode and encode audio files. Also: it's just a custom repackaging of the huge work of Ketmar. https://repo.or.cz/iv.d.git glad you

Re: Announcing audio-formats v1.0.0

2020-03-18 Thread Guillaume Piolat via Digitalmars-d-announce
On Wednesday, 18 March 2020 at 18:41:11 UTC, Guillaume Piolat wrote: audio-formats is a new pure D #DUB package that allows to decode and encode audio files. Also: it's just a custom repackaging of the huge work of Ketmar. https://repo.or.cz/iv.d.git

Announcing audio-formats v1.0.0

2020-03-18 Thread Guillaume Piolat via Digitalmars-d-announce
Hi, audio-formats is a new pure D #DUB package that allows to decode and encode audio files. # Features - decode #WAV / #FLAC / #MP3 (LGPL in that case) - encode #WAV - support for chunked load and writes (32-bit float as interchange) - support for nothrow @nogc - support for FILE* or

Re: Tracing D Applications

2020-03-18 Thread kinke via Digitalmars-d-announce
On Wednesday, 18 March 2020 at 12:27:11 UTC, drug wrote: Is XRay available on macOS now? As I understand it is linux specific too. Some LLVM docs are notoriously outdated. Latest official LDC Mac packages ship with the XRay libs; Windows appears still unsupported though.

Re: Tracing D Applications

2020-03-18 Thread drug via Digitalmars-d-announce
On 3/14/20 9:38 PM, Johan wrote: On Friday, 13 March 2020 at 21:41:44 UTC, kinke wrote: On Friday, 13 March 2020 at 19:00:01 UTC, Mike Parker wrote: This post by Alexandr Druzhinin shows three different approaches to tracing, using writef and external tools. Blog:

Re: Tracing D Applications

2020-03-18 Thread drug via Digitalmars-d-announce
On 3/17/20 7:12 PM, Steven Schveighoffer wrote: On 3/13/20 3:00 PM, Mike Parker wrote: This post by Alexandr Druzhinin shows three different approaches to tracing, using writef and external tools. Blog: https://dlang.org/blog/2020/03/13/tracing-d-applications/ Reddit: