We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Picture
ApeTag
There is no easy way to interact with Pictures when using ApeTag. They are currently treated as any other item with ItemValue::Binary.
ItemValue::Binary
We could very easily split them off from the other items and store them separately, like we do for VorbisComments.
VorbisComments
impl ApeTag { /// Removes PictureType::Icon and PictureType::OtherIcon like Id3v2Tag and VorbisComments fn insert_picture(&mut self, picture: Picture) -> Option<Picture>; fn pictures(&self) -> impl Iterator<Item = &Picture>; fn remove_picture_type(&mut self, picture_type: PictureType) -> impl Iterator<Item = Picture>; }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Summary
There is no easy way to interact with
Picture
s when usingApeTag
. They are currently treated as any other item withItemValue::Binary
.We could very easily split them off from the other items and store them separately, like we do for
VorbisComments
.API design
The text was updated successfully, but these errors were encountered: