FFMPEG.jl
FFMPEG.jl copied to clipboard
Julia Package for the FFMPEG builder binaries
## Error message ``` ERROR: LoadError: InitError: could not load library "/Users/liujinguo/.julia/artifacts/6095fcd268ea712c0f786f5ff1a45bf0eb7b005e/lib/libavdevice.58.13.100.dylib" dlopen(/Users/liujinguo/.julia/artifacts/6095fcd268ea712c0f786f5ff1a45bf0eb7b005e/lib/libavdevice.58.13.100.dylib, 0x0001): Library not loaded: @rpath/libssl.3.dylib Referenced from: /Users/liujinguo/.julia/artifacts/6095fcd268ea712c0f786f5ff1a45bf0eb7b005e/lib/libavdevice.58.13.100.dylib Reason: tried: '/Users/liujinguo/.julia/artifacts/6095fcd268ea712c0f786f5ff1a45bf0eb7b005e/lib/./libssl.3.dylib' (no such file), '/Users/liujinguo/.julia/artifacts/6095fcd268ea712c0f786f5ff1a45bf0eb7b005e/lib/./libssl.3.dylib' (no such...
It is v6.1.1 now, but we are still at v4.3.1 here.
With `--depwarn=yes` ``` julia> FFMPEG.exe("-version") ┌ Warning: ffmpeg() is deprecated, use the non-do-block form │ caller = ip:0x0 └ @ Core :-1 ... ``` With `--depwarn=error` ``` julia> FFMPEG.exe("-version") ERROR:...
The problem is due to BinaryProvider which returns 'unknown'. However, BinaryProvider seems to be no longer active, so I am in a sort of Catch22 situation. How to solve? (I...
This allows to get updates for GitHub actions automatically. I have used this for my own packages, the [Trixi.jl framework](https://github.com/trixi-framework), and the [SciML organization](https://github.com/SciML). After merging this, you could also...
Updated compat and removed avresample reference: https://bugs.gentoo.org/722274
### Meta This is similar to #25, but about another library and persists for `julia v1.6.2`, `FFMPEG v0.4.1`, [`PyPlot v2.10.0`](https://github.com/JuliaPy/PyPlot.jl). That issue is also over a year old and has...
Seems similar to issue #27 but the message is not the same: ``` pkg> build FFMPEG Building FFMPEG → `C:\Users\Jeremy\.julia\packages\FFMPEG\guN1x\deps\build.log` ┌ Error: Error building `FFMPEG`: │ ERROR: LoadError: LoadError: LibraryProduct(nothing,...
`FFMPEG.ffmpeg_exe` failed with `ERROR: failed process`. Although the use of ffmpeg through FFMPEG.jl failed, I can use it with appropriate LD_LIBRARY_PATH. Do you have any advice or workaround? ```bash >...
The compat entry was overly restrictive. A caret is needed since the binary has version >1.0. See https://pkgdocs.julialang.org/v1/compatibility/#compat-pre-1.0 Ref #45. Not allowing FFMPEG 4.4 lead to cascading downgrades when combining...