equalizedigital / accessibility-checker

GNU General Public License v2.0
15 stars 8 forks source link

Missing Transcript False Positives on .avif images #598

Closed amberhinds closed 1 month ago

amberhinds commented 3 months ago
Screenshot 2024-05-01 at 12 51 47 PM

This is on Dream A World.

pattonwebz commented 3 months ago

I haven't looked closely at this, but my initial thought is that we need to not run video rules against these and instead treat avif file formats as images - like we treat gifs and web files that can be animated.

amberhinds commented 3 months ago

Yeah, I had to google that file format, but it appears to only be used by images not videos.

pattonwebz commented 1 month ago

I just looked at this, and the same false positive happens with .avif files being considered as videos, and video_present is flagged for them as well.

pattonwebz commented 1 month ago

@amberhinds I have a solution for this in PR #695. It will prevent .avif being considered for checks that the file format isn't applicable to.

amberhinds commented 1 month ago

Thank you!