forked from pool/aubio
- Update soname and generate libaubio5 package - Update to version 0.4.5 * src/io/source_avcodec.c: add support for libswresample * aubio: new python command line tool to extract information * src/onset/onset.c: add spectral whitening and compression, improve default parameters * this_version.py: use centralized script to get current version, adding git sha when building from git repo (thanks to MartinHN) * src/spectral/awhithening.h: add adaptive whitening * src/{cvec,mathutils,musicutils}.h: add cvec_logmag, fvec_logmag, and fvec_push * src/onset/onset.h: add aubio_onset_set_default_parameters to load optimal parameters of each novelty function, _{set,get}_compression and _{set,get}_awhitening to turn on/off compression and adaptive whitening * src/spectral/specdesc.h: add weighted phase * src/onset/onset.c: improve default onset parameters (thanks to @superbock for access to his evaluation database), see commit dccfad2 for more details * src/pitch/pitch.c: avoid segfault when using invalid parameters * src/temporal/biquad.c: fix biquad parameters initialization (thanks to @jurlhardt) * examples/aubio{onset,track}.c: add options --miditap-note and --miditap-velo to set which midi note is triggered at onset/beat (thanks to @tseaver) * examples/aubioonset.c: show actual parameters in verbose mode * examples/utils.c: improve memory usage to emit midi notes * python/ext/py-source.c: add with (PEP 343) and iter (PEP 234) interface * python/ext/py-sink.c: add with interface (PEP 343) * python/lib/aubio/cmd.py: new `aubio` command line tool * python/lib/aubio/cut.py: moved from python/scripts/aubiocut * doc/*.rst: reorganize and improve sphinx manual * doc/*.txt: update manpages, add simple manpage for aubio command line OBS-URL: https://build.opensuse.org/request/show/491058 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/aubio?expand=0&rev=13
79 lines
2.5 KiB
RPMSpec
79 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-aubio
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-aubio
|
|
Version: 0.4.5
|
|
Release: 0
|
|
Summary: A collection of tools for music analysis
|
|
License: GPL-3.0+
|
|
Group: Development/Languages/Python
|
|
Url: http://aubio.org/
|
|
Source: http://aubio.org/pub/aubio-%{version}.tar.bz2
|
|
Source1: http://aubio.org/pub/aubio-%{version}.tar.bz2.asc
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module nose2}
|
|
BuildRequires: %{python_module numpy-devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-numpy
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
A python module to access the aubio library functions.
|
|
|
|
aubio is a library to label music and sounds. It listens to audio signals and attempts to detect events. For instance, when a drum is hit, at which frequency is a note, or at what tempo is a rhythmic melody.
|
|
|
|
Its features include segmenting a sound file before each of its attacks, performing pitch detection, tapping the beat and producing midi streams from live audio.
|
|
|
|
%prep
|
|
%setup -q -n aubio-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}/%{_bindir}/aubio
|
|
%python_clone -a %{buildroot}/%{_bindir}/aubiocut
|
|
|
|
%check
|
|
%ifpython3
|
|
export PYTHONPATH=%{buildroot}/%{python_sitearch}
|
|
%python_exec setup.py test
|
|
%endif
|
|
|
|
%post
|
|
%python_install_alternative aubio
|
|
|
|
%postun
|
|
%python_uninstall_alternative aubio
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%doc README.md ChangeLog COPYING AUTHORS
|
|
%python_alternative %{_bindir}/aubio
|
|
%python_alternative %{_bindir}/aubiocut
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|