This is really strange. It’s the same filename but it’s listed as missing and as unused at the same time.
Take a look at the collection.media folder (in a new Anki profile with just one card). Do you see pronunciation_fr_tête-à -tête.mp3
or pronunciation_fr_tête_à_tête.mp3
?
https://docs.ankiweb.net/#/files?id=file-locations
This may be irrelevant, but create a new Anki profile, copy-paste the following code in the Debug Console and press Ctrl+Return.
import locale
print('Default:', locale.getdefaultlocale())
print('Current:', locale.getlocale())
locale.setlocale(locale.LC_CTYPE, 'en_US.UTF-8')
print('New:', locale.getlocale())
https://docs.ankiweb.net/#/misc?id=debug-console
The output should be something like
Default: (‘en_US’, ‘cp65001’)
Current: (‘English_United States’, ‘utf8’)
New: (‘en_US’, ‘UTF-8’)
If the current locale is not utf8
, add a new card with pronunciation_fr_tête_à_tête.mp3
and run Check Media. Maybe it’ll be different this time and report no unused or missing files.