Got a few errors on building with ninja #94
|
Hello there! I burned with installing dependencies but could run
|
Replies: 2 comments 2 replies
|
Use FFMS2 in the fallback subprojects instead of the package provided by your distro. The latest release version of FFMS2 is 3 years old, so it's not compatible with ffmpeg 5.1+. See https://github.com/arch1t3cht/Aegisub/blob/feature/.github/workflows/ci.yml#L92 |
|
The error looks like your ffmpeg is too old for the ffms2 subproject (which requires ffmpeg 6.0 now when building from master). First of all I'd try a clean rebuild (i.e. recloning the repository from scratch) since some ffms2/ffmpeg related things were changed just a few days ago. In particular meson should now detect if ffmpeg is too old. If that doesn't work you can try any of
|
The error looks like your ffmpeg is too old for the ffms2 subproject (which requires ffmpeg 6.0 now when building from master).
First of all I'd try a clean rebuild (i.e. recloning the repository from scratch) since some ffms2/ffmpeg related things were changed just a few days ago. In particular meson should now detect if ffmpeg is too old.
If that doesn't work you can try any of
--force-fallback-for=ffmpegto the meson options (this might even happen automatically with a clea…