how to check the resolution of mp4 file
创建于:2025年6月17日
创建于:2025年6月17日
how to check the resolution of mp4 file
To check the resolution of an MP4 file, you can use several tools depending on your operating system and preferences. Here are the most common methods:
Ctrl + I
).If you have ffmpeg
installed:
bashffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=s=x:p=0 yourfile.mp4
This command will output something like:
1920x1080
Cmd + I
or go to Window → Show Movie Inspector.Let me know your operating system or tools available if you'd like tailored instructions or need help automating this for multiple files.