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

How to clear the disc number when it has a value of "01/02" #626

Open
morfikov opened this issue Mar 13, 2024 · 1 comment
Open

How to clear the disc number when it has a value of "01/02" #626

morfikov opened this issue Mar 13, 2024 · 1 comment

Comments

@morfikov
Copy link

Some of my songs have weird disc number values, for instance 01/02 suggesting that there are two discs and this one is the first one (instead of the usual 01 or 1 ). I wanted to clear this info out by using --disc-num="0" . This works well with the field when there's just a number like 01 or 1, but it doesn't work with this 01/02 -- it only clears the first number, so it becomes 00/02. Is there a way to remove the value altogether?

@WhitePeter
Copy link

Depending on what you want to achieve, you need to either clear the TPOS text frame:

# mind the colon
eyeD3 --text-frame=TPOS: <files>
# equivalent approach
eyeD3 --disc-num=0 --disc-total=0 <files>

or just set it, e.g.:

eyeD3 --text-frame=TPOS:<disc-num> <files>
# equivalent
eyeD3 --disc-num=<disc-num> --disc-total=0 <files>
# -> disc: <disc-num>

# or as a part of a set of 1 members
eyeD3 --text-frame=TPOS:<disc-num>/<disc-total> <files>
# equivalent
eyeD3 --disc-num=<disc-num> --disc-total=<disc-total> <files>
# -> disc: <disc-num>/<disc-total>

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

2 participants