Copy link to clipboard
Copied
Hi guys,
Having renamed a file I sometimes need to find out the original file name so as not to delete its master by mistake - if the renamed file is a copy, or if it's a master to a copy used elsewhere. I think you get my point.
Thanks a lot,
Raphael
In the Metadata panel there is a field below File Name called Original Filename.
It¨s visible when Metadata is set to Exif and IPTC.
Copy link to clipboard
Copied
In the Metadata panel there is a field below File Name called Original Filename.
It¨s visible when Metadata is set to Exif and IPTC.
Copy link to clipboard
Copied
Indeed! Thanks a lot Per.
Copy link to clipboard
Copied
You can create script for restoring Original filenames (it will recover it from metadata):
For script creation use text editor or code editor like "Visual Studio Code", paste code bellow and save it in .jsx format.
var selectedItems = app.project.selection;
for (var i = 0; i < selectedItems.length; i++) {
var item = selectedItems[i];
if (item instanceof FootageItem && item.file !== null) {
var originalFilename = item.file.displayName;
item.name = originalFilename;
}
}
In After Effects do to File - Scripts - Run Script File - and open file script you just created.
Copy link to clipboard
Copied
This is not relevant to Lightroom Classic.