I have gstreamer installed on a mac and am getting the following conflicts when I run a simple test. How can I resolve these?
gst-launch-1.0 --version
objc[55523]: Class ResultReceiver is implemented in both /opt/homebrew/Cellar/gtk+3/3.24.42/lib/libgtk-3.0.dylib (0x10573de00) and /opt/homebrew/Cellar/gtk4/4.14.4/lib/libgtk-4.1.dylib (0x1195fb248). One of the two will be used. Which one is undefined.
objc[55523]: Class GtkApplicationQuartzDelegate is implemented in both /opt/homebrew/Cellar/gtk+3/3.24.42/lib/libgtk-3.0.dylib (0x10573de28) and /opt/homebrew/Cellar/gtk4/4.14.4/lib/libgtk-4.1.dylib (0x1195fb270). One of the two will be used. Which one is undefined.
objc[55523]: Class GNSMenuItem is implemented in both /opt/homebrew/Cellar/gtk+3/3.24.42/lib/libgtk-3.0.dylib (0x10573de78) and /opt/homebrew/Cellar/gtk4/4.14.4/lib/libgtk-4.1.dylib (0x1195fb2c0). One of the two will be used. Which one is undefined.
objc[55523]: Class GNSMenu is implemented in both /opt/homebrew/Cellar/gtk+3/3.24.42/lib/libgtk-3.0.dylib (0x10573dea0) and /opt/homebrew/Cellar/gtk4/4.14.4/lib/libgtk-4.1.dylib (0x1195fb2e8). One of the two will be used. Which one is undefined.
objc[55523]: Class FilterComboBox is implemented in both /opt/homebrew/Cellar/gtk+3/3.24.42/lib/libgtk-3.0.dylib (0x10573df18) and /opt/homebrew/Cellar/gtk4/4.14.4/lib/libgtk-4.1.dylib (0x1195fb360). One of the two will be used. Which one is undefined.
objc[55523]: Class gdkCoreCursor is implemented in both /opt/homebrew/Cellar/gtk+3/3.24.42/lib/libgdk-3.0.dylib (0x104b2d628) and /opt/homebrew/Cellar/gtk4/4.14.4/lib/libgtk-4.1.dylib (0x1195fb3b0). One of the two will be used. Which one is undefined.
gst-launch-1.0 version 1.24.3
GStreamer 1.24.3
I’ve tried to remove both of them - one at a time - and brew refuses as they are both required. Note I haven’t tried to force removal:
% brew remove gtk+3
Error: Refusing to uninstall /opt/homebrew/Cellar/gtk+3/3.24.42
because it is required by gstreamer, which is currently installed.
You can override this and force removal with:
brew uninstall --ignore-dependencies gtk+3
% brew remove gtk4
Error: Refusing to uninstall /opt/homebrew/Cellar/gtk4/4.14.4
because it is required by gstreamer, which is currently installed.
You can override this and force removal with:
brew uninstall --ignore-dependencies gtk4
Can someone please help? Thank you.