Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for total amount of tracknumbers + album artist + album title #360

Open
porg opened this issue Jun 28, 2021 · 0 comments
Open

Support for total amount of tracknumbers + album artist + album title #360

porg opened this issue Jun 28, 2021 · 0 comments

Comments

@porg
Copy link

porg commented Jun 28, 2021

Environment

Reproduction

Download the audio track of a DJ mix published as a Youtube video

youtube-dl -o mix-file.mp3 -x --audio-format mp3 --prefer-ffmpeg URL

Parse video description for a tracklist and generate a CUE file from it

youtube-cue URL sheet-file.cue

Split the mixfile into individual tracks according to the CUE sheet

  • And name the album folder and the track files by this scheme:
  • Album Title/TrackNr Performer or else Artist - Song Title

mp3splt -o "@b/@N @A - @t" -c my-sheet-file.cue my-mix-file.mp3

Expected Result and Actual Result

  • ✅ The folder name and the file names are properly created according to the tag scheme.
  • ✅ Per each track (MP3 file) the ID3 tags are set accordingly to the maximum information contained in the CUE sheet:
    • ✅ Track artist (=PERFORMER stated per each TRACK entry in the CUE file)
    • ✅ Song title (=TITLE stated per each TRACK entry in the CUE file)
    • ✅ Track number (=Nr stated next each TRACK entry in the CUE file)
    • ❌ of total amount of tracks
      • The manual mentions Total tracknumber is not yet supported
      • If I may ask: Where's the difficulty? Reading/interpreting or writing the metadata?
      • In case if it's interpretation: I'd be absolutely satisified if interpretation is plain and simple: Simply choose the highest encountered tracknumber as the total number.
    • ❌ Album artist (=PERFORMER stated in the first lines of the CUE file), the DJ of the DJ mix.
    • ❌ Album title (=TITLE stated in the first lines of the CUE file), the DJ mix name.
      • Why did the properly parsed info not make it into the tag of the ID3 metadata?
      • The folder was properly created by @b.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant