Skip to content

Commit

Permalink
replaygain2: added TAK and .mp4 to supported file formats
Browse files Browse the repository at this point in the history
Supported since rsgain 3.4
  • Loading branch information
phw committed Sep 13, 2023
1 parent 9509b80 commit c75d0f4
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions plugins/replaygain2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,29 @@
This plugin depends on the ReplayGain utility [rsgain](https://github.com/complexlogic/rsgain). Users
are required to install rsgain and set its path in the plugin settings before use.
<h4>Usage</h4>
#### Usage
Select one or more tracks or albums, then right click and select Plugin->Calculate ReplayGain. The plugin
will calculate ReplayGain information for the selected items and display the results in the metadata
window. Click the save button to write the tags to file.
The following file formats are supported:
<ul>
<li>MP3 (.mp3)
<li>FLAC (.flac)
<li>Ogg (.ogg, .oga, spx)
<li>Opus (.opus)
<li>MPEG-4 Audio (.m4a)
<li>Wavpack (.wv)
<li>Monkey's Audio (.ape)
<li>WMA (.wma)
<li>MP2 (.mp2)
<li>WAV (.wav)
<li>AIFF (.aiff)
</ul>
- MP3 (.mp3)
- FLAC (.flac)
- Ogg (.ogg, .oga, spx)
- Opus (.opus)
- MPEG-4 Audio (.m4a, .mp4)
- Wavpack (.wv)
- Monkey's Audio (.ape)
- WMA (.wma)
- MP2 (.mp2)
- WAV (.wav)
- AIFF (.aiff)
- TAK (.tak)
This plugin is based on the original ReplayGain plugin by Philipp Wolfer and Sophist.
'''
PLUGIN_VERSION = "1.3"
PLUGIN_VERSION = "1.4"
PLUGIN_API_VERSIONS = ["2.0"]
PLUGIN_LICENSE = "GPL-2.0"
PLUGIN_LICENSE_URL = "https://www.gnu.org/licenses/gpl-2.0.html"
Expand All @@ -54,6 +54,7 @@
OggSpeexFile,
OggTheoraFile,
OggVorbisFile,
TAKFile,
WAVFile,
WavPackFile,
)
Expand Down Expand Up @@ -92,6 +93,7 @@
OggSpeexFile,
OggTheoraFile,
OggVorbisFile,
TAKFile,
WAVFile,
WavPackFile,
)
Expand Down

0 comments on commit c75d0f4

Please sign in to comment.