Ruud van Asseldonk
Ruud van Asseldonk
Claxon implements [the FLAC spec](https://xiph.org/flac/format.html) which describes bit by bit what the stream should look like, and the spec makes no mention of embedding. So any container format that embeds...
I have added [an example](https://github.com/ruuda/claxon/blob/0c53140262825dea1a781c7ff85f6338c17bf9a3/examples/decode_mp4.rs) that shows how to read flac from an mp4 container using `mp4parse`. All the building blocks were there, but I had to expose a few...
I added an [ogg example](https://github.com/ruuda/claxon/blob/master/examples/decode_ogg.rs) too now! There are still a few rough edges in the Claxon API; I plan to implement a few more things to make reading from...
Running in a directory containing a Stack project (which has been compiled): ``` $ stack install cabal-dependency-licenses $ $(stack path --local-bin)/cabal-dependency-licenses > cabal-dependency-licenses: Run the 'configure' command first. ``` Maybe...
Note that [since Stack 1.3.0](https://docs.haskellstack.org/en/stable/ChangeLog/#130), there is `stack list-dependencies --license`.
I am experiencing the same issue. `glfwGetFramebufferSize` and `glfwGetWindowSize` return the same values, even though I have a high-dpi display with scaling factor 2. I have only a single display,...
@robryk Please take a look.
I ran into the same issue. In my case the problem was that the parent project was a binary. It needs to be a library instead.
> then the behavior you describe can be achieved by calling a program that subsequently calls the other two methods But both of them need to be approved first before...
Thanks for including me in the discussion, I’d be happy to help. A few thoughts: * There is a tradeoff between exposing a unified API for every format, and achieving...