– If you have access to the file’s properties, copy the output of a tool like ffprobe , MediaInfo, or even just the file’s size, resolution, frame‑rate, and codec.
| Item | Details | How to Obtain | |------|---------|----------------| | | MIDV‑354.mp4 | – | | File size | <size in MB/GB> | ls -lh MIDV‑354.mp4 (Linux/macOS) or file properties (Windows) | | Duration | <hh:mm:ss> | Media players (VLC, MPV) or ffprobe -i MIDV‑354.mp4 -show_entries format=duration -v quiet -of csv="p=0" | | Resolution | <width×height> (e.g., 1920×1080) | ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=p=0 MIDV‑354.mp4 | | Frame rate | <fps> | ffprobe -v error -select_streams v:0 -show_entries stream=r_frame_rate -of default=noprint_wrappers=1:nokey=1 MIDV‑354.mp4 | | Codec(s) | Video: <codec name> Audio: <codec name> | ffprobe -v error -show_streams -select_streams v:0,a:0 MIDV‑354.mp4 | | Bitrate | <kbps> | Same ffprobe command above ( bit_rate field) | | Container format | MP4 (ISO‑BMFF) | ffprobe output | | Creation / modification date | <date> | stat MIDV‑354.mp4 (Linux/macOS) or file properties | | MD5 / SHA‑256 checksum | <checksum> | md5sum MIDV‑354.mp4 or sha256sum MIDV‑354.mp4 | MIDV-354.mp4