1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/usr/bin/env ruby
cams = { "SIGMA DP2 Merrill" => "dp2m", "FP2" => "fp2", "Canon EOS 1000D" => "1000d", "iPad Air" => "ipadair", "iPhone 5" => "iphone5", "iPhone SE" => "iphonese", "IQ180" => "iq180" }
cams.default = "default"
file_ext = ARGV[0]
if !file_ext
file_ext = "jpg"
end
ids = []
while line = STDIN.gets # list of files
a = line.split('.')
a.pop
ids << a.join('.')
end
used_prefixes = {} # prefix -> 0..N
ids.each do |i|
exif = `exiftool #{i}.#{file_ext} 2>/dev/null`
a = exif.split "\n"
timestamp = nil
timestamp_bak = nil
cam = nil
cam_bak = nil
a.each { |j|
if j.start_with? "Camera Model Name"
cam = j
elsif j.start_with? "Model"
cam_bak = j
elsif j.start_with? "Date/Time Original"
timestamp = j
elsif j.start_with? "File Modification Date/Time"
if not timestamp_bak
timestamp_bak = j
end
elsif j.start_with? "Creation Date"
timestamp_bak = j
else
next
end
}
skip = false
t = ""
c = ""
new_prefix = ""
add = 0
begin
if timestamp
t = timestamp.split(':',2)[1].strip.gsub(/(:|\ )/, '-')
end
if timestamp_bak
t_bak = timestamp_bak.split(':',2)[1].strip.gsub(/(:|\ )/, '-')
end
if cam
c = cams[cam.split(':',2)[1].strip]
elsif cam_bak
c = cams[cam_bak.split(':',2)[1].strip]
else
c = "unknown-device"
end
if t.split('-').first.to_i < 2000
t = t_bak
if not t or t.split('-').first.to_i < 2000
puts "metadata unreasonable for #{i}, skipping!"
skip = true
end
end
new_prefix = "#{t}-#{c}"
add = 1
rescue
puts "Can't find metadata for #{i}, skipping!"
skip = true
end
next if skip
while used_prefixes.has_key? new_prefix
new_prefix = "#{t}-#{add}-#{c}"
add += 1
end
used_prefixes[new_prefix] = true
Dir.glob("#{i}*").each { |f|
ext = f.gsub(/^#{i}/,"")
if File.exists? "#{new_prefix}#{ext}"
puts "File exists: #{new_prefix}#{ext} (#{i})!"
exit
else
`mv #{i}#{ext} #{new_prefix}#{ext}`
end
}
end
|