| Field | Example | Delimiter | |---------------|-----------------|-----------| | System | AMS | _ | | Project | Sugar | _ | | Version | v01 | _ | | Media type | VID (video), SS (screenshot) | _ | | Counter | 001 | . | | Extension | jpg | |
Use photorec or scalpel with custom signature for JPEGs and filter results by metadata containing “AMS”, “Sugar”, and absence of “II”. AMS Sugar I -Not II- Any Video SS jpg
In the academic community (specifically on platforms like arXiv and OpenReview), papers are often assigned temporary or anonymized IDs. is the anonymized submission title for the paper: is the anonymized submission title for the paper:
# Exclude any file containing "II" or "2" find /ams_storage -type f \( -iname "*sugar*" -not -iname "*ii*" -not -iname "*2*" \) \( -iname "*.jpg" -o -iname "*.jpeg" \) -exec file {} \; | grep -i "video\|screenshot" | grep -i "video\|screenshot"