We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had to change line 21 to exiftool_version.to_f > 0.0
because as steated on line 24
also I'm planning to add functionnality to write GPS datas...
The text was updated successfully, but these errors were encountered:
first mokeup of my addon #setGPS class Exiftool def self.setGPS file, gps exiftool_opts = "" gps.each do |field, value| exiftool_opts << "'-EXIF:#{field}=#{value}' " end cmd = "#{self.command} #{exiftool_opts} #{Shellwords.escape file.to_s} 2> /dev/null" #puts "cmd = '#{cmd}'" return #{cmd}.strip.gsub(/^(\d+).*/, '\1').to_i == 1 end end
#{cmd}
I'll arrange, as u, to set several files instead of only one...
Sorry, something went wrong.
the backticks are laking because of pasting I mean
0753452
No branches or pull requests
I had to change line 21 to
exiftool_version.to_f > 0.0
because as steated on line 24
This is a string, not a float, to handle versions like "9.40" properly.
also I'm planning to add functionnality to write GPS datas...
The text was updated successfully, but these errors were encountered: