commit b32c402fb0f30304133b2595d8981a113f9b9dea2431e349d460a294471ae73b Author: Takashi Iwai Date: Sun Mar 9 09:13:02 2025 +0000 audiowmark 0.6.4 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audiowmark?expand=0&rev=6 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/audiowmark-0.6.2.tar.zst b/audiowmark-0.6.2.tar.zst new file mode 100644 index 0000000..896e0c4 --- /dev/null +++ b/audiowmark-0.6.2.tar.zst @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aacc80be9fca2c9462be51b1cf34d9194946876ae08c7bbb13c5c3b2d9621437 +size 353257 diff --git a/audiowmark-0.6.3.tar.zst b/audiowmark-0.6.3.tar.zst new file mode 100644 index 0000000..45bc11c --- /dev/null +++ b/audiowmark-0.6.3.tar.zst @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65389bb1de1d5ea40fdf010d9ca2164394550c5b921e25944a117b8f2ddad5ab +size 371317 diff --git a/audiowmark-0.6.4.tar.zst b/audiowmark-0.6.4.tar.zst new file mode 100644 index 0000000..c8385b1 --- /dev/null +++ b/audiowmark-0.6.4.tar.zst @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4445beb70fc17ee11cdd40788ec9936f0c7bb6cf0395ac9ae077652a16e48d +size 369907 diff --git a/audiowmark.changes b/audiowmark.changes new file mode 100644 index 0000000..ef98246 --- /dev/null +++ b/audiowmark.changes @@ -0,0 +1,23 @@ +------------------------------------------------------------------- +Wed Mar 5 21:38:56 UTC 2025 - Andreas Stieger + +- update to 0.6.4: + * reduce memory usage for multiple operations + * optimize performance for speed detection / normal sync + * improve detection for libgcrypt, use pkg-config if available + +------------------------------------------------------------------- +Fri Dec 27 18:11:15 UTC 2024 - Andreas Stieger + +- update to 0.6.3 + * update HLS support to build with ffmpeg-7 API + * preserve wav subformat + * improved RawConverter + * add format wav-pipe for very long input/output streams on + stdin/stdout + * performance optimizations for SFOutputStream + +------------------------------------------------------------------- +Fri Feb 23 20:28:40 UTC 2024 - Andreas Stieger + +- initial version diff --git a/audiowmark.spec b/audiowmark.spec new file mode 100644 index 0000000..7189db9 --- /dev/null +++ b/audiowmark.spec @@ -0,0 +1,59 @@ +# +# spec file for package audiowmark +# +# Copyright (c) 2025 Andreas Stieger +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: audiowmark +Version: 0.6.4 +Release: 0 +Summary: Audio watermarking +License: GPL-3.0-or-later +URL: https://uplex.de/audiowmark/ +Source: https://uplex.de/audiowmark/releases/%{name}-%{version}.tar.zst +BuildRequires: c++_compiler +BuildRequires: pkgconfig +BuildRequires: zita-resampler-devel +BuildRequires: zstd +BuildRequires: pkgconfig(fftw3f) +BuildRequires: pkgconfig(libgcrypt) >= 1.2.0 +BuildRequires: pkgconfig(libmpg123) +BuildRequires: pkgconfig(libswresample) +BuildRequires: pkgconfig(sndfile) >= 1.1.0 + +%description +audiowmark is an open source solution for watermarking audio files. It is is +designed to be robust, fast, secure, and to produce a a watermark is not audible +for most users. + +%prep +%autosetup -p1 + +%build +%configure \ + --with-ffmpeg \ + %{nil} +%make_build + +%install +%make_install + +%files +%license COPYING +%doc NEWS README.adoc +%{_bindir}/audiowmark +%{_bindir}/videowmark + +%changelog