Takashi Iwai 2025-03-09 09:13:02 +00:00 committed by Git OBS Bridge
commit b32c402fb0
7 changed files with 115 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
audiowmark-0.6.2.tar.zst Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aacc80be9fca2c9462be51b1cf34d9194946876ae08c7bbb13c5c3b2d9621437
size 353257

3
audiowmark-0.6.3.tar.zst Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:65389bb1de1d5ea40fdf010d9ca2164394550c5b921e25944a117b8f2ddad5ab
size 371317

3
audiowmark-0.6.4.tar.zst Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5a4445beb70fc17ee11cdd40788ec9936f0c7bb6cf0395ac9ae077652a16e48d
size 369907

23
audiowmark.changes Normal file
View File

@ -0,0 +1,23 @@
-------------------------------------------------------------------
Wed Mar 5 21:38:56 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
- 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 <andreas.stieger@gmx.de>
- 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 <andreas.stieger@gmx.de>
- initial version

59
audiowmark.spec Normal file
View File

@ -0,0 +1,59 @@
#
# spec file for package audiowmark
#
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
#
# 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