hello,
how do I set it so that when the metadata is transferred, it doesn't show me on the screen what it read and what it wrote?
exiftool.exe -q -q -v3 -ee -TagsFromFile %%d../%%f.mp4 %1rec/*
command line is from a batch file from windows.
f:\1\WORK>exiftool.exe -q -q -v3 -ee -TagsFromFile %d../%f.mp4 f:\1\WORK\rec/*
======== f:/1/WORK/rec/C0002.mp4
Setting new values from f:/1/WORK/rec/../C0002.mp4
Writing JFIF:YResolution if tag exists
Writing Photoshop:YResolution if tag exists
Writing XMP-tiff:YResolution if tag exists
Writing IFD0:YResolution
Writing JFIF:XResolution if tag exists
Writing Photoshop:XResolution if tag exists
Writing XMP-tiff:XResolution if tag exists
Writing IFD0:XResolution
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Casio:WhiteBalance (not in PrintConv)
Can't convert Casio:WhiteBalance (not in PrintConv)
Can't convert Casio:WhiteBalance (not in PrintConv)
Can't convert FujiFilm:WhiteBalance (not in PrintConv)
Can't convert KodakIFD:WhiteBalance (not in PrintConv)
Can't convert KDC_IFD:WhiteBalance (not in PrintConv)
Can't convert Kodak:WhiteBalance (not in PrintConv)
Can't convert Kodak:WhiteBalance (not in PrintConv)
Can't convert value for Minolta:WhiteBalance (no PrintConvInv)
Can't convert Minolta:WhiteBalance (not in PrintConv)
Can't convert Minolta:WhiteBalance (not in PrintConv)
Can't convert Minolta:WhiteBalance (not in PrintConv)
Can't convert Minolta:WhiteBalance (not in PrintConv)
Writing Nikon:WhiteBalance if tag exists
Writing Nikon:WhiteBalance if tag exists
Can't convert Leica:WhiteBalance (not in PrintConv)
Can't convert Panasonic:WhiteBalance (not in PrintConv)
Can't convert Leica:WhiteBalance (not in PrintConv)
Can't convert Pentax:WhiteBalance (not in PrintConv)
Can't convert Pentax:WhiteBalance (not in PrintConv)
Can't convert Ricoh:WhiteBalance (not in PrintConv)
Can't convert Ricoh:WhiteBalance (not in PrintConv)
Writing Sigma:WhiteBalance if tag exists
Writing Sigma:WhiteBalance if tag exists
Writing Sigma:WhiteBalance if tag exists
Writing Sigma:WhiteBalance if tag exists
Can't convert Sony:WhiteBalance (not in PrintConv)
Can't convert Sony:WhiteBalance (not in PrintConv)
Can't convert Sony:WhiteBalance (not in PrintConv)
Can't convert Sony:WhiteBalance (not in PrintConv)
Can't convert XMP-crd:WhiteBalance (not in PrintConv)
Can't convert XMP-crs:WhiteBalance (not in PrintConv)
Can't convert XMP-exif:WhiteBalance (not in PrintConv)
Can't convert ExifIFD:WhiteBalance (not in PrintConv)
Writing ExifIFD:WhiteBalance if tag exists
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Canon:WhiteBalance (not in PrintConv)
Can't convert Casio:WhiteBalance (not in PrintConv)
Can't convert Casio:WhiteBalance (not in PrintConv)
Can't convert Casio:WhiteBalance (not in PrintConv)
Can't convert FujiFilm:WhiteBalance (not in PrintConv)
Can't convert KodakIFD:WhiteBalance (not in PrintConv)
Can't convert KDC_IFD:WhiteBalance (not in PrintConv)
......
......
I want the above data to stop being displayed.
Thank you.
Remove the -v (-verbose) option (https://exiftool.org/exiftool_pod.html#v-NUM--verbose).
Quote from: StarGeek on August 26, 2023, 12:02:35 AMRemove the -v (-verbose) option (https://exiftool.org/exiftool_pod.html#v-NUM--verbose).
HEllo,
Why?
-v (verbose) i think can read more information .... i want copy all info can be copied from source to destination.
Please read the docs that I linked. The very first thing that the docs say for that option is
QuotePrint verbose messages
That is all it does
The
-v option has no effect on what tags are copied.
The
-ee (
-extractEmbedded) option (https://exiftool.org/exiftool_pod.html#ee-NUM--extractEmbedded) also has no effect on the tags that are copied. It just allows for reading data that are in the video streams or in the embedded files in a PDF. This is data that exiftool can display, but cannot copy.
However, the command you are using will copy tags to different locations. See FAQ #9 (https://exiftool.org/faq.html#Q9)
The command you should be using is
exiftool.exe -q -q -TagsFromFile %%d../%%f.mp4 -All:All %1rec/*