Why is Mojave not supported by the latest release?

Started by Marc66FR, April 08, 2021, 09:26:41 PM

Previous topic - Next topic

Marc66FR

MacOS Mojave is still supported and updated by Apple but Avidemux no longer supports this OS. Is there a reason for this? Any chance to have the latest release work on Mojave?

I don't plan to update my OS until it is no longer supported by Apple (ie. ~at the end of the year). Which means I won't be able to update my 2.7.6 until then. Because, yes, 2.7.6 works flawlessly on Mojave although it is labeled as "Catalina". It even worked on High Sierra, hence my surprise to see 2.7.8 not compatible with Mojave  :(

Thank you

eumagga0x2a

Quote from: Marc66FR on April 08, 2021, 09:26:41 PMMacOS Mojave is still supported and updated by Apple but Avidemux no longer supports this OS. Is there a reason for this?

There is no fully functional build node running Mojave available for the project maintainer while it is extremely difficult (and officially unsupported) to install Homebrew built for a different macOS version. Avidemux uses quite a lot of libraries provided by Homebrew for stuff like video (x264, x265, xvid4) and audio (fdk-aac) encoders as well as for some video filters (e.g. libass to hardcode subtitles) which cannot be loaded when the macOS version doesn't match.

Quote from: Marc66FR on April 08, 2021, 09:26:41 PMAny chance to have the latest release work on Mojave?

As an official (nightly) build? I fear, no. I could assist you with building it yourself (success not guaranteed, however).

Quote from: Marc66FR on April 08, 2021, 09:26:41 PMBecause, yes, 2.7.6 works flawlessly on Mojave

No, it doesn't. Or rather, the basic functionality not needing any Homebrew libs works, sure. But shipping a half-broken application is not a viable solution, IMHO.

Marc66FR

#2
Thank you for your replies. I might give a try to build it myself but I haven't compiled a program in nearly 20 years ... Are the links from this page pointing to the right instructions and still valid?

Quote from: eumagga0x2a on April 08, 2021, 10:28:31 PMThere is no fully functional build node running Mojave available for the project maintainer

If there is no fully functional build node running Mojave, how was the 2.7.7 Mojave build from 27 Dec created? Can I trust this build is as close as the most recent Mojave update I can get? Where can I find the changelog related to that release?

eumagga0x2a

Quote from: Marc66FR on April 12, 2021, 07:44:17 AMAre the links from this page pointing to the right instructions and still valid?

No, absolutely not. Please forget all the confusing old howtos.

Quote from: Marc66FR on April 12, 2021, 07:44:17 AMIf there is no fully functional build node running Mojave, how was the 2.7.7 Mojave build from 27 Dec created?

This build proved that the build node was not functional WRT its Homebrew environment (I cannot judge whether it could be made functional, I am a collaborator contributing patches and providing support on the forum, not linked in any way to the project infrastructure).

Quote from: Marc66FR on April 12, 2021, 07:44:17 AMCan I trust this build is as close as the most recent Mojave update I can get?

I don't follow you. That build is broken, it doesn't provide the set of features which Avidemux should offer. If you build yourself (and if this works), you will get a fully functional Avidemux at the current state of development.

Quote from: Marc66FR on April 12, 2021, 07:44:17 AMWhere can I find the changelog related to that release?

The "About Avidemux" dialog mentions the last git commit a build is created off. Little or no info is available about the state of the build environment.

eumagga0x2a

Regarding setup of build environment, you need to install the Xcode app by Apple from the store first (please be warned that it requires an insane amount of disk space, can be 30 GiB or such), which in turn will prompt to install command line tools (a tiny part and the only thing we actually need from Xcode) upon the first launch of the app.

If Xcode and command line tools have been installed successfully, you should proceed with installing Homebrew.

Once Homebrew has been installed, install Avidemux build dependencies by executing

brew install cmake nasm yasm qt\@5 xvid x264 x265 libvpx aom opus fdk-aac lame libass mp4v2 a52dec
(I hope a haven't left out any required package) and clone Avidemux source tree:

git clone https://github.com/mean00/avidemux2.git && cd avidemux2 && git submodule update --init --recursive
To actually build Avidemux, export MACOSX_DEPLOYMENT_TARGET matching Mojave (10.14) and run the Catalina build script within the top source directory (i.e. in "avidemux2"):

export MACOSX_DEPLOYMENT_TARGET=10.14
bash bootStrapOsx_Catalina.bash

If everything goes well, the Avidemux app bundle will be created in the "installer" subdirectory.

Marc66FR

Quote from: eumagga0x2a on April 12, 2021, 08:23:41 AM.

Thank you for the detailed information. I'm not sure I want to sacrifice 30+ GB to install a tool I'll use once a year. I guess I'll have to live with 2.7.6 until I upgrade to Big Sur at the end of the year

eumagga0x2a

Quote from: Marc66FR on April 12, 2021, 12:43:02 PMI'm not sure I want to sacrifice 30+ GB to install a tool I'll use once a year.

Once you have generated an Avidemux app bundle, you don't need to keep Xcode and Homebrew installed (well, unless you build Avidemux with VapourSynth support and want to be able to load VapourSynth scripts in Avidemux).

bubbaprog

Just replying here to note that you do NOT need to install Xcode to build Avidemux or anything else — just do any task that needs command line tools (git clone will do it) and they will install and that's all you need.

To build a version that runs in Mojave follow the above instructions through cloning the git repository and then right-click and duplicate the Catalina build script, rename it bootStrapOsx_Mojave.bash, open it in Textedit and make the following edit:

change
if [ "x$MACOSX_DEPLOYMENT_TARGET" = "x" ] ; then
    export MACOSX_DEPLOYMENT_TARGET=10.15
fi
to
export MACOSX_DEPLOYMENT_TARGET=10.14
then run

sudo bash bootStrapOsx_Mojave.bash
i just did this on a fresh Mojave install and it works fine so far. Some of us still need 32-bit apps and cannot upgrade past Mojave and I hope this helps.

eumagga0x2a

Quote from: bubbaprog on May 06, 2021, 03:59:57 AMyou do NOT need to install Xcode to build Avidemux or anything else — just do any task that needs command line tools (git clone will do it) and they will install and that's all you need.

This is pretty exiting (not that command line tools is all we need, this is well known), does it work now – did it ever worked – without installing Xcode first or without registration as developer with Apple?

bubbaprog

Quote from: eumagga0x2a on May 06, 2021, 09:45:03 AMThis is pretty exiting (not that command line tools is all we need, this is well known), does it work now – did it ever worked – without installing Xcode first or without registration as developer with Apple?

this system is clean, has never had Xcode installed, and I am not an Apple developer.

Marc66FR

Quote from: bubbaprog on May 06, 2021, 03:59:57 AMJust replying here to note that you do NOT need to install Xcode to build Avidemux or anything else — just do any task that needs command line tools (git clone will do it) and they will install and that's all you need.

i just did this on a fresh Mojave install and it works fine so far. Some of us still need 32-bit apps and cannot upgrade past Mojave and I hope this helps.

I may give it a try when I have some time. Since I have CCC backups of my disk, I'll boot with one of them to perform those steps.

I'm surprised you can build a binary without a compiler though.

eumagga0x2a

Quote from: Marc66FR on June 01, 2021, 09:19:14 AMI'm surprised you can build a binary without a compiler though.

Command line tools, which include the compiler, are everything we need. I just didn't know that it is possible to obtain them without registering as developer with Apple (and without installing Xcode, of course).

Grim Reaper

Quote from: eumagga0x2a on June 01, 2021, 10:03:51 AM
Quote from: Marc66FR on June 01, 2021, 09:19:14 AMI'm surprised you can build a binary without a compiler though.

Command line tools, which include the compiler, are everything we need. I just didn't know that it is possible to obtain them without registering as developer with Apple (and without installing Xcode, of course).

Avidemux2.8.1 was, with a lot of help from eumagga0x2a, able to be built to run on MacOS Mojave (10.14) and it works.

Grim Reaper

Quote from: Grim Reaper on January 18, 2022, 09:31:21 PM
Quote from: eumagga0x2a on June 01, 2021, 10:03:51 AM
Quote from: Marc66FR on June 01, 2021, 09:19:14 AMI'm surprised you can build a binary without a compiler though.

Command line tools, which include the compiler, are everything we need. I just didn't know that it is possible to obtain them without registering as developer with Apple (and without installing Xcode, of course).

Avidemux2.8.1 was, with a lot of help from eumagga0x2a, able to be built to run on MacOS Mojave (10.14) and it works.

A year ago, now a year later, and I am still using Aidemux 2.8.1 I compiled and use with MacOS Mojave 10.14.6 with TinyPY script batch processing.

avitime

#14
Would you be able to upload that Avidemux 2.8.1 for MacOS Mojave 10.14.6 somewhere please?
I have been busy for hours trying to get it compiled and did it not get it to work.

wetransfer is free for smaller files to host, no account needed,