From d2393e31925ee1794dc9dbdbd35ac8848c683183 Mon Sep 17 00:00:00 2001 From: Kevin Murphy Date: Sat, 22 Oct 2022 23:13:14 -0400 Subject: [PATCH] meta: Remove dependency on `ffmpeg` AFAICT, we didn't actually need this for anything... Closes https://github.com/SwatPhonLab/UltraTrace/issues/176 --- .circleci/config.yml | 3 --- README.md | 4 ---- 2 files changed, 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0fe0312..5685ef8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,7 +36,6 @@ jobs: export DEBIAN_FRONTEND=noninteractive apt-get update apt-get install --yes \ - ffmpeg \ portaudio19-dev \ python3.8 \ python3.8-dev \ @@ -61,7 +60,6 @@ jobs: https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm dnf --assumeyes update dnf --assumeyes install \ - ffmpeg \ gcc \ portaudio-devel \ python3-devel \ @@ -84,7 +82,6 @@ jobs: name: install system packages command: | brew install \ - ffmpeg \ portaudio \ python-tk@3.9 diff --git a/README.md b/README.md index 196f337..d09aee8 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ You can have a look at our [UltraFest IX presentation](https://swatphonlab.githu This tool requires the following system packages to be installed: -* [`ffmpeg`](https://ffmpeg.org/) * [`portaudio`](http://www.portaudio.com/) * [`python3`](https://www.python.org/) (3.7 or later) @@ -45,7 +44,6 @@ Supported versions: 18.04, 20.04 ```sh $ apt-get update $ apt-get install --yes \ - ffmpeg \ portaudio19-dev \ python3.8 \ python3.8-dev \ @@ -64,7 +62,6 @@ $ dnf --assumeyes install \ https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm $ dnf --assumeyes update $ dnf --assumeyes install \ - ffmpeg \ gcc \ portaudio-devel \ python3-devel \ @@ -81,7 +78,6 @@ These instructions use the [Homebrew](https://brew.sh) package manager. ```sh $ brew update $ brew install \ - ffmpeg \ portaudio \ python-tk@3.9 ```