Search Criteria
Package Details: loudness-scanner-git v0.5.1.r18.g3d333bf-1
Git Clone URL: | https://aur.archlinux.org/loudness-scanner-git.git (read-only, click to copy) |
---|---|
Package Base: | loudness-scanner-git |
Description: | EBU R128 loudness normalization tool |
Upstream URL: | https://github.com/jiixyj/loudness-scanner |
Keywords: | ebur128 loudness normalization replaygain |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | Xenograph |
Maintainer: | Xenograph |
Last Packager: | Xenograph |
Votes: | 6 |
Popularity: | 0.000002 |
First Submitted: | 2015-11-18 02:35 |
Last Updated: | 2015-11-18 02:39 |
Dependencies (10)
- glib2 (glib2-sched-policy, glib2-clear, glib2-quiet, glib2-selinux, glib2-nodocs-git, glib2-git, glib2-patched-thumbnailer)
- libebur128 (libebur128-git)
- taglib (taglib-git)
- cmake (cmake-git) (make)
- git (git-git) (make)
- ffmpeg (ffmpeg-semifull-git, ffmpeg-tmblock-git, ffmpeg4.0, ffmpeg-cuda, ffmpeg-v4l2-request-git, ffmpeg-svt, ffmpeg-headless, ffmpeg-gl-transition, ffmpeg-git, ffmpeg-decklink, ffmpeg-intel-full-git, ffmpeg-mmal, ffmpeg-svt-av1-git, ffmpeg-libfdk_aac, ffmpeg-full, ffmpeg-nox-git, ffmpeg-svt-vp9-git, ffmpeg-nocuda, ffmpeg-ndi, ffmpeg-amd-full, ffmpeg-full-git, ffmpeg-amd-full-git) (optional) – ffmpeg input support
- gstreamer (gstreamer-git) (optional) – gstreamer input support
- libmpcdec (libmpcdec-svn) (optional) – libmpcdec input support
- libsndfile (libsndfile-git, libsndfile-minimal-git) (optional) – libsndfile input support
- mpg123 (mpg321, mpg123-svn) (optional) – libmpg123 input support
Latest Comments
gabor_zoka commented on 2017-10-07 23:58
This patch worked for me:
--- aur-original/loudness-scanner-git/PKGBUILD 2015-11-18 02:39:43.000000000 +0000
+++ aur-modified/loudness-scanner-git/PKGBUILD 2017-10-08 00:52:57.470862680 +0100
@@ -21,14 +21,12 @@
prepare() {
cd "$srcdir/$pkgname"
git submodule init
- git submodule deinit ebur128
git submodule update
- sed -i '/add_subdirectory(ebur128\/ebur128)/d' ./CMakeLists.txt
}
build() {
cd "$srcdir/$pkgname"
- cmake -DDISABLE_GTK2:BOOL=ON -DDISABLE_QT4:BOOL=ON .
+ cmake -DDISABLE_GTK2:BOOL=ON -DDISABLE_QT4:BOOL=ON -DDISABLE_QT5:BOOL=ON .
make
}
@@ -36,6 +34,9 @@
cd "$srcdir/$pkgname"
install -Dm 644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm 755 loudness "${pkgdir}/usr/bin/loudness"
+ for i in libinput_*; do
+ install -Dm 644 "$i" "${pkgdir}/usr/lib/$i"
+ done
}
pkgver() {
Alister.Hood commented on 2017-03-18 07:26
Looks like it just needs to be changed to actually package the plugins.
Alister.Hood commented on 2017-03-18 02:18
Does this actually work for anybody?
I get "Warning: no plugins found!", regardless of whether or not I alter the prepare function as ansatz described.
ansatz commented on 2015-12-01 18:47
If these lines are in the prepare function:
git submodule deinit ebur128
and
sed -i '/add_subdirectory(ebur128\/ebur128)/d' ./CmakeLists.txt
the plugins are not built and consequently aren't installed. Comment those out and try again, the plugins appear. See here for more ”coder-friendly” observations: https://github.com/jiixyj/loudness-scanner/issues/12
Xenograph commented on 2015-11-30 17:29
ansatz: You may have to reinstall the package if you installed those after installing loudness-scanner, I believe it looks for the libraries at compile time. If that's not the issue, then I'm not sure. This is the output from my CMake configure and I have no issues:
-- status found / disabled --
-- queue.h: no using system copy of queue.h
-- speexdsp: no no
-- glib-2.0: yes no
-- gthread-2.0: yes no
-- sndfile: yes no
-- taglib: yes no
-- mpg123: yes no
-- mpcdec: no no
-- gstreamer: no no
-- ffmpeg: yes no
-- rsvg2: yes no
-- gtk2: yes yes
-- qt4: no yes
ansatz commented on 2015-11-30 16:45
I'm getting: "Warning: no plugins found!" despite having both ffmpeg and mpg123 installed.