-
Notifications
You must be signed in to change notification settings - Fork 48
tagging.py: coverart rework documentation #57
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
base: master
Are you sure you want to change the base?
Conversation
Is this updated and ready for review now that gpodder/gpodder#1701 has been merged? |
No wait, I think I need to rebase it. That should be quick. |
3803a55
to
6f5e63d
Compare
Ok, now it should be good to review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably stop using "git master branch", because the auto_embed_coverart
used it and was merged in 2013. Perhaps something like "post 3.11.5", "after 3.11.5", or suggestions welcome since those might be seen as 3.11.5 supporting them to some users.
Ok, I'll try to make that clearer. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That "newer than" is perfect, and thank you for looking up the versions for other settings.
docs/extensions/tagging.md
Outdated
@@ -23,7 +23,7 @@ artwork will be preferred if it is present - if not, the channel artwork will be | |||
Note that episode-specific artwork in MP4 files is currently not implemented. | |||
|
|||
The artwork can optionally be normalized to the desired parameters - size and file type. | |||
By default, it will write 500px baseline JPEGs. | |||
By default, it will baseline JPEGs with the larger side scaled to 500px with the aspect ratio maintained. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does "will baseline JPEGs" mean something, or was that meant to be "will write JPEGs"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, "baseline" is the opposite of "progressive" JPEG, that being, it will be decoded all at once rather than in increasing resolution (if I recall correctly). Maybe I should say "non-progressive" to make that more clear...?
This probably doesn't matter to people opening the files on a computer, but those with old timey mp3 players often cannot open progressive album art.
Edit: I did miss a word in there as well though, I see now...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, "baseline" is the opposite of "progressive" JPEG, that being, it will be decoded all at once rather than in increasing resolution (if I recall correctly). Maybe I should say "non-progressive" to make that more clear...?
This probably doesn't matter to people opening the files on a computer, but those with old timey mp3 players often cannot open progressive album art.
Edit: I did miss a word in there as well though, I see now...
Done - please see d1a89c7
depends on PR #55