Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avuserow/combine-replaygain
Combined ReplayGain scanner, using mp3gain, vorbisgain, etc, and ffmpeg to transcode others
https://github.com/avuserow/combine-replaygain
Last synced: about 2 months ago
JSON representation
Combined ReplayGain scanner, using mp3gain, vorbisgain, etc, and ffmpeg to transcode others
- Host: GitHub
- URL: https://github.com/avuserow/combine-replaygain
- Owner: avuserow
- Created: 2011-01-17T08:49:23.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-01-17T09:37:07.000Z (almost 14 years ago)
- Last Synced: 2023-03-10T22:03:07.707Z (almost 2 years ago)
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
combine-replaygain - A Combined ReplayGain Scanner
ReplayGain is cool, but the majority of scanner programs are written for a
single file type. The only scanners I have found that support all common
filetypes are built-in to media players like Winamp.This is a small project intended as a makeshift solution to this problem. It
detects which scanners you have installed, and uses ffmpeg to convert unknown
filetypes to one of these.In addition, this project does _not_ modify your existing files. This is
intended for use by the Acoustics Music Player, which has the philosophy of not
modifying music files at all. The main scanner program will only report a list
of files.file(1) is used for file type detection. Sometimes mp3 files are not identified
properly, which will result in them being transcoded (possibly to a mp3!) and
then scanned. This is just slower and slightly less accurate.In the future, a wrapper script to write tags to the individual files may exist.
Patches welcome.Scanners supported directly:
- mp3gain (MPEG Layer III audio)
- vorbisgain (ogg vorbis audio)Scanners that exist but are NOT supported yet:
- aacgain (MPEG-4 audio), just needs to be implemented
- WaveGain (uncompressed WAVE audio), just needs to be implementedScanners for uncommon filetypes which are unlikely to be implemented:
- wvgain (WavPack files)
- musepackScanners that are unsuitable for use:
- metaflac (FLAC audio), CANNOT be implemented as-is, since it always writes to
the file
- Winamp, foobar2000, QuuxPlayer, MediaMonkey, etcTODO:
- parallel mode
- implement aacgain, wavegain
- better file type detection
- ignore common non-music files found in music directories (album art,
directories, text files)
- wrapper script for writing tags
- better logging and error checking