Hello,
It sounds like you're trying to customize the tooltip information for video files in Windows Explorer. You've made a good start by editing the registry, but sometimes specific settings or additional steps might be needed. Here's a more detailed approach that might help:
- Access the Registry Editor:
- Press Win + R, type
regedit
, and press Enter.
- Press Win + R, type
- Navigate to the File Types: For .MKV files:
- Go to
HKEY_CLASSES_ROOT\.mkv
.
- Go to
HKEY_CLASSES_ROOT\.mp4
.
- Go to
- Locate or create the
InfoTip
String Value:- If it doesn't exist, you may need to create a new string value called
InfoTip
under the respective file type key.
- If it doesn't exist, you may need to create a new string value called
- Set the
InfoTip
Value:- Modify the
InfoTip
value to includeSystem.Video.FrameWidth;System.Video.FrameHeight
.
- Modify the
prop:System.ItemNameDisplay;System.Media.Duration;System.Video.FrameWidth;System.Video.FrameHeight
- Add Property Handlers: You may also need to ensure that the property handlers for video files are correctly set. This can sometimes be necessary for the updated info to show up.
- Go to
HKEY_CLASSES_ROOT\SystemFileAssociations\.mkv
andHKEY_CLASSES_ROOT\SystemFileAssociations\.mp4
. - If they don't exist, create them.
- Inside those keys, create or modify the
FullDetails
string value to something likeprop:System.ItemNameDisplay;System.Media.Duration;System.Video.FrameWidth;System.Video.FrameHeight
.
- Go to
- Restart Explorer: After making changes, you should restart Windows Explorer to apply them:
- Press Ctrl + Shift + Esc to open Task Manager.
- Find and select "Windows Explorer" in the list.
- Click "Restart" at the bottom-right corner.
If these steps don't work, it may be that the specific video types don't expose frame width and height properties in the way Explorer can easily read them.
Even with the correct registry entries, Windows Explorer may not always display the resolution for certain video formats, especially if they are encoded in specific codecs (like HEVC).
If needed, you might consider using third-party software to view detailed file information, such as MediaInfo, which provides comprehensive details about video files.
Best Regards,
Yanhong Liu
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.