SongDownloader: write metadata to m4a (DASH) downloads - #239
Closed
np3ir wants to merge 1 commit into
Closed
Conversation
FLAC downloads are tagged in-flight by the FlacStreamTagger, but DASH streams are written to disk untagged. After a download that resolves to a m4a file, write the same tags (title, artists, album, cover, etc.) post-download using node-taglib-sharp (pure JS, no ffmpeg or native binaries). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Owner
|
Have you tested this verifying it works? Also going to close this, please integrate the library/functionality (after validating it works) into the main Luna lib which has all the tag generation etc already handled. |
Contributor
Author
|
Fair call — it turned out it did NOT work as submitted: TIDAL DASH downloads are raw concatenated CMAF segments (fragmented MP4), and node-taglib-sharp can't write tags to those at all. Tagging requires remuxing to a progressive MP4 first. Now integrated into the Luna lib as requested, with a pure-JS remux (bit-identical packet copy, encoder delay/gapless preserved) and validated end to end (MD5-verified offline + live in the client): Inrixia/TidaLuna#176 |
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.
Currently only FLAC downloads get tagged (the FlacStreamTagger runs in-flight on the
vnd.tidal.btsbranch), while DASH streams are written to disk as raw untagged m4a files.This PR adds a post-download tagging step using node-taglib-sharp (pure JS, no ffmpeg or native binaries): when the downloaded file resolves to m4a, the same tags Luna already builds (
flacTags()) are written to the file, including cover art. Individual fields that fail to write are skipped best-effort so a bad tag never corrupts the download.Generated with Claude Code