วิชาบังคับก่อน: PowerShell (ดังนั้น: Windows) exiftool อาจทำงานกับระบบปฏิบัติการอื่น ๆ ด้วยPowerShell Coreและexiftool
แทนที่จะexiftool.exe
ใช้
ฉันกำลังจะเขียนเครื่องมือด้วยตัวเองเมื่อพบกับโพสต์ของ Alex Jensen :
เปิดเทอร์มินัล PowerShell และคัดลอกและวางผ่านทางนี้:
สำหรับผู้ที่ไม่ได้ใช้รหัส: บรรทัดที่ขึ้นต้นด้วย # ทำเครื่องหมายบรรทัดความคิดเห็น อย่างที่คุณเห็นทุกอย่างมากกว่าครึ่งเป็นความเห็นดังนั้นจงสงบไว้! :)
# Let exiftool collect all EXIF-data from a directory (recursively) and save it in a .CSV-file:
C:\temp\exiftool.exe "Z:\Pics" -csv -r -ext NRW -ext CR2 -ext JPG -ISO -ISOSetting -Aperture -ExposureTime -Model -Lens -FocalLength -LensID -ExposureCompensation -MeteringMode -Flash -FocusMode -AFAreaMode -CreateDate > c:\temp\all_exif.csv
# Note: C:\temp\exiftool.exe ... path to your exiftool.exe
# Note: Z:\Pics ... path to your pictures
# Note: C:\temp\all_exif.csv ... basically any place on your computer.
# Note: -ext can be adapted (e.g. add -ext ARW and remove -ext CR2)
# Note: It gets a lot of metadata, not only focal length. You could delete all but -FocalLength if you want to.
# You could now import that .CSV-file into Excel or any other spreadsheet program - or you keep going with your PowerShell window:
# Load the exifdata to a variable for further manipulation:
$exif = Import-Csv c:\temp\all_exif.csv
# Get information about focal length:
$exif | Group-Object Focallength -NoElement
# Different other metadata:
# Apertures used:
$exif | Group-Object Aperture -NoElement
# Show all lenses ever used:
$exif | Group-Object LensID | Select-Object Name | Sort-Object Name
# Find the most used combination of ISO and Aperture:
$exif | Group-Object ISO, Aperture | Sort-Object count -Descending | Select-Object Count, name