From f71ca58c1ce45486af493b9c5d526b0f8b412b29 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Mon, 24 Nov 2025 12:38:25 -0500 Subject: [PATCH] Use ffmpeg 8.0.1 --- README.md | 6 +----- ae.nimble | 7 +++---- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 50646a9cf..9b53e6c41 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,7 @@ auto-editor path/to/your/video.mp4

Installing

-``` -pip install auto-editor -``` - -See [Installing](https://auto-editor.com/installing) for additional information. +See [Installing](https://auto-editor.com/installing) for more information.

Cutting

diff --git a/ae.nimble b/ae.nimble index 6570bc02b..f1b2fef32 100644 --- a/ae.nimble +++ b/ae.nimble @@ -100,7 +100,7 @@ let lame = Package( name: "lame", sourceUrl: "http://deb.debian.org/debian/pool/main/l/lame/lame_3.100.orig.tar.gz", sha256: "ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e", - buildArguments: @["--disable-frontend", "--disable-decoder", "--disable-gtktest"], + buildArguments: @["--disable-frontend", "--disable-decoder", "--disable-gtktest", "--disable-dependency-tracking"], ffFlag: "--enable-libmp3lame", ) let opus = Package( @@ -156,9 +156,8 @@ let x265 = Package( ) let ffmpeg = Package( name: "ffmpeg", - sourceUrl: "https://ffmpeg.org/releases/ffmpeg-8.0.tar.xz", - mirrorUrl: "https://auto-editor.com/ffmpeg-8.0.tar.xz", - sha256: "b2751fccb6cc4c77708113cd78b561059b6fa904b24162fa0be2d60273d27b8e", + sourceUrl: "https://ffmpeg.org/releases/ffmpeg-8.0.1.tar.xz", + sha256: "05ee0b03119b45c0bdb4df654b96802e909e0a752f72e4fe3794f487229e5a41", ) var packages: seq[Package] = @[] if not defined(macosx):