[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3873] contrib/py/scripts/addons/ sequencer_extra_actions/exiftool.py: added arguments "-u" and "-a" in exiftool execution command line to make it able to see unknown data ( MakerNotes) and repeated info.

carlos padial palidoestudio2 at gmail.com
Sat Oct 20 13:03:17 CEST 2012


Revision: 3873
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3873
Author:   carlospadial
Date:     2012-10-20 11:03:15 +0000 (Sat, 20 Oct 2012)
Log Message:
-----------
added arguments "-u" and "-a" in exiftool execution command line to make it able to see unknown data (MakerNotes) and repeated info.

Modified Paths:
--------------
    contrib/py/scripts/addons/sequencer_extra_actions/exiftool.py

Modified: contrib/py/scripts/addons/sequencer_extra_actions/exiftool.py
===================================================================
--- contrib/py/scripts/addons/sequencer_extra_actions/exiftool.py	2012-10-20 00:06:40 UTC (rev 3872)
+++ contrib/py/scripts/addons/sequencer_extra_actions/exiftool.py	2012-10-20 11:03:15 UTC (rev 3873)
@@ -171,7 +171,7 @@
         with open(os.devnull, "w") as devnull:
             self._process = subprocess.Popen(
                 [self.executable, "-stay_open", "True",  "-@", "-",
-                 "-common_args", "-G", "-n"],
+                 "-common_args", "-G", "-u", "-a", "-n"],
                 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
                 stderr=devnull)
         self.running = True



More information about the Bf-extensions-cvs mailing list