xd009642
xd009642
For the game sequence: 1. d4 f6 2. d5 e5 The `Board::to_string()` implementation generates the following FEN string: "rnbqkbnr/pppp2pp/5p2/3Pp3/8/8/PPP1PPPP/RNBQKBNR w KQkq e5 0 1". This is incorrect, the en-passant square...
I found myself wanting to use `open_with` on a decoder before knowing what the codec being decoded is (making `open_as_with` infeasible). This PR adds that implementation and also for `encoder/subtitle.rs`...
I'm working out this in my current project with the aim of using tracing but essentially this would let a use provide a lambda callback and handle getting it into...
I'm writing some code that's making use of AVIOContext within an AVFormatContext and using a bunch of unsafe code as a result. It would be nicer ergonomically if some wrappers...
So I'm collecting some other stats for my server (real-time-factor as it processes media). And I was wondering how to create the stats object used for latency and requests with...
The entire request being printed out when the body is exceptional large or contains binary data leads to poor debugging when a guard fails. I could provide a real example...
So as well as the license text for my companies own compliance we have to have a section beforehand with the list of dependencies and the copyright holders. I'm aware...
It doesn't matter what the request is we get responses like this: ``` Invalid byte 47, offset 18110. at line 3 column 1: { "audioContent": "UklGRuyoAQBXQVZFZm10IBAAAAABAAEA8FUAAOCrAAACABAAZGF0YcioAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA ``` A snippet of...
If you get a wav file with length set to 0xFFFFFFFF it fails to parse as an ill-formed wav file, however programs like ffmpeg can set that to the length...
Add support for textual metadata in the INFO chunk i.e. description, artist-name, title etc. This would be of a lot of use to me in a project I'm doing. I...