Add AIFF codec support for conversion#1006
Open
chuckyutan wants to merge 2 commits into
Open
Conversation
Add an AIFF converter (lossless PCM, pcm_s24be) so downloads can be converted to .aiff via the `[conversion]` codec option or `--codec aiff`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Conversion runs after tagging the source file, but ffmpeg does not reliably carry metadata into the converted container (AIFF was left completely untagged). Add an AIFF tagging path (ID3 via mutagen) and re-tag the converted file for formats tag_file understands. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds AIFF as a conversion target codec.
Currently
[conversion]supports FLAC, ALAC, OPUS, MP3, VORBIS, and AAC. This adds AIFF (lossless PCM,pcm_s24be) so users can have downloads converted to.aiff— useful for DJ software and editing workflows (e.g. Serato, Logic, Pro Tools) that prefer AIFF.Changes
converter.py: newAIFFconverter class (pcm_s24be, containeraiff, lossless) and registered"AIFF"inget()rip/cli.py: allow--codec aiffand update help textconfig.py/config.toml: document AIFF in the codec commentTesting
Verified the underlying ffmpeg conversion produces a valid 24-bit AIFF:
🤖 Generated with Claude Code