Projects
home:enzokiel
avidemux3
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 27
View file
avidemux3.changes
Changed
@@ -1,7 +1,7 @@ ------------------------------------------------------------------- -Sun Aug 02 09:42:49 UTC 2026 - enzokiel@kabelmail.de +Wed Aug 12 08:18:23 UTC 2026 - enzokiel@kabelmail.de -- Update to version 2.8.2.git20260730 +- Update to version 2.8.2.git20260806 - No changelog available -------------------------------------------------------------------
View file
avidemux3.spec
Changed
@@ -19,7 +19,7 @@ Name: avidemux3 Summary: Graphical video editing and transcoding tool License: GPL-2.0-only -Version: 2.8.2.git20260730 +Version: 2.8.2.git20260806 Release: 0 URL: https://github.com/mean00/avidemux2 ExclusiveArch: %ix86 x86_64
View file
avidemux2-2.8.2.git20260730.tar.xz/.devcontainer_mxe64/Dockerfile -> avidemux2-2.8.2.git20260806.tar.xz/.devcontainer_mxe64/Dockerfile
Changed
@@ -146,23 +146,48 @@ EOF # Split the build in two to avoid timeouts, not sure that helps -RUN cd /opt && git clone https://github.com/mxe/mxe.git && cd mxe && \ - echo "MXE_TARGETS := x86_64-w64-mingw32.shared" > settings.mk \ - && echo "JOBS := 4" >> settings.mk && make qt6-qtbase -RUN cd /opt/mxe && make qt6 -RUN cd /opt/mxe && make opencore-amr && make fdk-aac && make sdl3 -RUN echo Done +RUN cd /opt && git clone https://github.com/mxe/mxe.git && cd mxe \ + && echo "MXE_TARGETS := x86_64-w64-mingw32.shared" > settings.mk \ + && echo "JOBS := 4" >> settings.mk \ + && echo "MXE_SILENT_NO_NETWORK :=" >> settings.mk + +WORKDIR /opt/mxe + +COPY fdk-aac.patch /tmp/ +RUN patch -p1 --dry-run < /tmp/fdk-aac.patch \ + && patch -p1 < /tmp/fdk-aac.patch || : + +COPY opus.patch /tmp/ +RUN patch -p1 --dry-run < /tmp/opus.patch \ + && patch -p1 < /tmp/opus.patch || : + +RUN make \ + fdk-aac \ + lame \ + libass \ + libvpx \ + ogg \ + opencore-amr \ + opus \ + sdl3 \ + vorbis \ + x264 \ + x265 \ + xvidcore + +RUN make qt6-qttools && echo Done + ENV PATH="/opt/mxe/usr/bin:/usr/local/bin:/opt/mxe/bin:/opt/mxe/usr/x86_64-pc-linux-gnu/qt6/bin/:${PATH}" # --- install libaom #COPY ./.devcontainer_mxe64/install-libaom.bash /tmp/ + +WORKDIR /tmp + COPY install-libaom.bash /tmp/ -RUN cd /tmp && \ - AOM_TAG="v3.14.1" \ +RUN AOM_TAG="v3.14.1" \ bash install-libaom.bash /opt/mxe # -- nvenc -RUN cd /tmp && git clone https://github.com/FFmpeg/nv-codec-headers.git && cd nv-codec-headers && \ - git checkout "sdk/11.1" && \ - make install DESTDIR=/opt/mxe/usr/x86_64-w64-mingw32.shared/ PREFIX=/ - - +RUN git clone https://github.com/FFmpeg/nv-codec-headers.git && cd nv-codec-headers \ + && git checkout "sdk/11.1" \ + && make install DESTDIR=/opt/mxe/usr/x86_64-w64-mingw32.shared/ PREFIX=/
View file
avidemux2-2.8.2.git20260806.tar.xz/.devcontainer_mxe64/fdk-aac.patch
Added
@@ -0,0 +1,15 @@ +diff --git a/src/fdk-aac.mk b/src/fdk-aac.mk +index 4a3a5b9b..1ce93eb6 100644 +--- a/src/fdk-aac.mk ++++ b/src/fdk-aac.mk +@@ -7,8 +7,8 @@ PKG := fdk-aac + $(PKG)_WEBSITE := https://github.com/mstorsjo/fdk-aac + $(PKG)_DESCR := FDK-AAC + $(PKG)_IGNORE := +-$(PKG)_VERSION := 2.0.0 +-$(PKG)_CHECKSUM := f7d6e60f978ff1db952f7d5c3e96751816f5aef238ecf1d876972697b85fd96c ++$(PKG)_VERSION := 2.0.3 ++$(PKG)_CHECKSUM := 829b6b89eef382409cda6857fd82af84fabb63417b08ede9ea7a553f811cb79e + $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) + $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz + $(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/opencore-amr/$(PKG)/$($(PKG)_FILE)
View file
avidemux2-2.8.2.git20260806.tar.xz/.devcontainer_mxe64/opus.patch
Added
@@ -0,0 +1,24 @@ +diff --git a/src/opus.mk b/src/opus.mk +index a16a6736..30355dfb 100644 +--- a/src/opus.mk ++++ b/src/opus.mk +@@ -3,15 +3,15 @@ + PKG := opus + $(PKG)_WEBSITE := https://opus-codec.org/ + $(PKG)_IGNORE := +-$(PKG)_VERSION := 1.3.1 +-$(PKG)_CHECKSUM := 65b58e1e25b2a114157014736a3d9dfeaad8d41be1c8179866f144a2fb44ff9d ++$(PKG)_VERSION := 1.6.1 ++$(PKG)_CHECKSUM := 6ffcb593207be92584df15b32466ed64bbec99109f007c82205f0194572411a1 + $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) + $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +-$(PKG)_URL := https://archive.mozilla.org/pub/$(PKG)/$($(PKG)_FILE) ++$(PKG)_URL := https://downloads.xiph.org/releases/$(PKG)/$($(PKG)_FILE) + $(PKG)_DEPS := cc + + define $(PKG)_UPDATE +- $(WGET) -q -O- 'https://archive.mozilla.org/pub/opus/?C=M;O=D' | \ ++ $(WGET) -q -O- 'https://downloads.xiph.org/releases/opus/?C=M;O=D' | \ + $(SED) -n 's,.*opus-\(0-9^>*\)\.tar.*,\1,p' | \ + grep -v 'alpha' | \ + grep -v 'beta' | \
View file
avidemux2-2.8.2.git20260730.tar.xz/bootStrapCrossMingwQt6_2026.sh -> avidemux2-2.8.2.git20260806.tar.xz/bootStrapCrossMingwQt6_2026.sh
Changed
@@ -248,7 +248,7 @@ cp -rvL "${MINGW}"/etc/fonts avidemux64/etc # -python3 mxe_scan_deps.py \ +python3 "${SRCTOP}/mxe_scan_deps.py" \ avidemux64 \ --sources \ ${MINGW}/bin \
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.