history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Exif Tool====== == Change EXIF CreationDate of Video file == run in PowerShell: <html><pre>& '...\exiftool(-k).exe' -CreateDate="2016:05:13 11:41:32" "video.MOV"</pre></html> == Change LastWriteTime == <html><pre>(Get-Item "video.MOV").LastWriteTime=("13-Mai-2016 11:41:32")</pre></html> or do it automatically if exif time is right <html><pre>& '...\exiftool(-k).exe' -CreateDate>FileModifyDate *.mp4</pre></html> or <html><pre>& '...\exiftool(-k).exe' -CreateDate>FileModifyDate . -r -ext mp4 -ext mov</pre></html> (sometimes you have to also do -CreateDate>EncodingTime) == Update LastWriteTime from EXIF information (for whole folder + subfolder)== This does not work for Videofiles <html><pre>& '...\exiftool(-k).exe' -r "-DateTimeOriginal>FileModifyDate" C:\path-to-folder\</pre></html>