-
Notifications
You must be signed in to change notification settings - Fork 7
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
Refinements and Enhancements #9
Comments
|
These are not issues, per se, rather requests. Thanks in advance.
Add a modifier, such as a semicolon, to append to keys which allow multiple lines or values (GENRE, COMMENT, POPM, …), as opposed to replacing any value previously set with the the new. See the example in the next item.
Add support writing POPM. I suggest:
"POPM":"[email protected]:192:62"
E.g., to replace current POPM values:
id3 -2 -wPOPM "[email protected]:2:62" …
E.g., to append to current POPM, i.e., add a second:
id3 -2 -wPOPM ";[email protected]:2:4" …
Replace line feed with Unicode (U+000D/U+000A) or PCRE (\R) representatives. This will allow writing multi-line COMM values. The \R matches the user's environment, \r\n or \n.
These all pertain to the verbose output (dump) and write options. I suggest modifying the format a little, allowing the output to a file in a standard way and reading in the same file.
a) I suggest "a key and value on one line" format for the metadata dump file (a little JSON-ish). Note that for key which allow multiple lines or values (GENRE, COMMENT, POPM, …), a prefixed semicolon appends attached value as opposed to swapping the attached new with any previously set.
b) Provide a means to output a dump file from an audio file. For example,
id3 -2 -vf test.mp3
>>> test.tags … with contents as (a) above.I realize that a users can currently do: id3 -v test.mp3 > test.tags
c) Provide a means to input a dump file to an audio file. For example,
id3 -2 -wf test.mp3
>>> uses contents of test.tags, or explicitly specify dump file,id3 -2 -wf "test.tags" test.mp3
The text was updated successfully, but these errors were encountered: