vorbisgain-vl.spec 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Summary: Add comments to Ogg Vorbis files to correct the volume
  2. Summary(ja): Ogg Vorbis ファイルに音量を一定に揃えるための情報を付加
  3. Name: vorbisgain
  4. Version: 0.36
  5. Release: 1%{?_dist_release}
  6. Group: Applications/Multimedia
  7. License: LGPL
  8. URL: http://sjeng.sourceforge.net/vorbisgain.html
  9. Source: http://sjeng.org/ftp/vorbis/vorbisgain-%{version}.zip
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: libvorbis-devel, unzip, perl
  12. Requires: libvorbis
  13. %description
  14. VorbisGain is a utility that uses a psychoacoustic method to correct the
  15. volume of an Ogg Vorbis file to a predefined standardized loudness.
  16. It is meant as a replacement for the normalization that is commonly used
  17. before encoding. Although normalization will ensure that each song has
  18. the same peak volume, this unfortunately does not say anything about the
  19. apparent loudness of the music, with the end result being that many
  20. normalized files still don't sound equally loud. VorbisGain uses
  21. psychoacoustics to address this deficiency. Moreover, unlike normalization,
  22. it's a lossless procedure which works by adding tags to the file.
  23. Additionally, it will add hints that can be used to prevent clipping on
  24. playback. It is based upon the ReplayGain technology.
  25. For more details, see http://replaygain.hydrogenaudio.org/.
  26. %prep
  27. %setup -q
  28. %build
  29. %__perl -p -i -e "s/-O2//" configure
  30. %configure --enable-recursive
  31. %__make
  32. %install
  33. %__rm -rf %{buildroot}
  34. %makeinstall
  35. %clean
  36. %__rm -rf %{buildroot}
  37. %files
  38. %defattr(-,root,root)
  39. %doc COPYING NEWS README
  40. %{_bindir}/*
  41. %{_mandir}/man1/*
  42. %changelog
  43. * Mon Oct 13 2008 Shu KONNO <owa@bg.wakwak.com> 0.36-1vl5
  44. - applied new versioning policy, spec in utf-8
  45. * Tue Sep 04 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 0.36-0vl2
  46. - rebuild with new environment
  47. * Sun Mar 13 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.36-0vl1
  48. - initial build