FreezyLemon
FreezyLemon
For posterity, this is the error when using an old rust-cache with a different ffmpeg version: Error message 2024-08-18T18:08:11.3927230Z ##[group]Run cargo build --release 2024-08-18T18:08:11.3927626Z [36;1mcargo build --release[0m 2024-08-18T18:08:11.3957715Z shell: C:\Program...
This sounds like a good idea. It will need a fair bit more code than the current `format::input` function (which should probably be called `format::input_from_path`) because reading from memory will...
I've thought about how to approach this. Keeping in mind #11, it might make sense to use the `clang` crate to parse the respective header files (`version.h`, `version_major.h`) and directly...
Looks good at first glance. Appreciate you updating the PR and adding this :+1: I'll take a proper look as soon as I have some time. Having version detection at...
There are multiple features with the same name pattern. `ffmpeg_4_3` `ffmpeg_5_0` `ffmpeg_6_0` etc. These are set automatically by the build script so that the library (and you, as a user)...
This is intentional. This Rust library is a relatively thin wrapper around the FFmpeg API, and they use a function called [avcodec_subtitle_decode2](https://ffmpeg.org/doxygen/6.0/group__lavc__decoding.html#ga5c30b73f0ec105f93d4e86464f541f21) for subtitles instead of their usual packet-based API.
The way I see it, there are two main possibilities to improve the blurring speed: Either choose a different algorithm or try to optimize the current algorithm further. The original...
I had some free time recently and really looked at it again, and I noticed something: All[^1] of the SIMD (AVX, to be specific) instructions are the `ss` (scalar single)...
Try running `vspipe --version` to see if that works. That should show if it's a VS error (usual culprit in these cases) or something else. Looking at the event viewer...
`model_path` has been deprecated for a while ([relevant commit, early 2022](https://git.ffmpeg.org/gitweb/ffmpeg.git/blobdiff/06a54a4ec73ea6eb8cec41b7af75367bafb075e0..3d29724c008:/libavfilter/vf_libvmaf.c)) > use model='path=...'. Guess this needs to be changed EDIT: Already reported in #821.