Kasper
Kasper
It's still happening consistently on Tauri 1.2.3 on macOS
@lucasfernog Is that stack trace from opening the devtools, or when you start resizing the window and he bug revealsitself? Would also like to point out, it seems like the...
It does! Great work @keiya01
@jesseduffield Any idea what would need to be done to fix this?
Would happily accept a PR, I probably won't work on this
VSCode does have that too, but unfortunately it's not ideal for me because it mixes up the editors/terminals of different projects
In your code you're calling `Decoder::new_aac(buf)`, but for m4a you need to call `Decoder::new_mpeg4(buf, size)`. Check out the m4a example
Which line is line 23? I'm getting a 403 error from the link, could you upload it here directly as a zip?
@NightlySide Nice choice of song! `ffprobe` says the file is 4m24s, but QuickTime Player says it's 9m09s, so I think whatever causes that might be the issue. If the problem...
The error actually comes from `read_sample` here: https://github.com/probablykasper/redlux/blob/4b4ac14c470963988cbe1a6fbdd829bf2cf7e139/src/lib.rs#L163 ``` Err(IoError(Error { kind: UnexpectedEof, message: "failed to fill whole buffer" })) ``` So it seems like an issue with the [mp4](https://github.com/alfg/mp4-rust)...