Skip to content

Instantly share code, notes, and snippets.

@gilbertfrancois
Last active March 25, 2025 16:24
Show Gist options
  • Save gilbertfrancois/d8de118eb1bcd953ebc6fc9290a4f572 to your computer and use it in GitHub Desktop.
Save gilbertfrancois/d8de118eb1bcd953ebc6fc9290a4f572 to your computer and use it in GitHub Desktop.
Uninstaller for GStreamer on macOS, where GStreamer is installed as framework from the official pkg distribution.
#!/usr/bin/env bash
# Author: Gilbert Francois Duivesteijn
# Date: Febr 2023
# Platform: macOS
# License: Apache
# Discard receipt data for the installed GStreamer packages.
pkgutil --pkgs | grep gstreamer | xargs -I % sudo pkgutil --forget %
# Remove the GStreamer Framework from disk
sudo rm -rf /Library/Frameworks/GStreamer.framework
@vibhansh-mdlz
Copy link

Thank you so much, was looking for this for so long.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment