• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to recover original Filename?

Enthusiast ,
Nov 13, 2016 Nov 13, 2016

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

Views

7.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Nov 13, 2016 Nov 13, 2016

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.

Votes

Translate

Translate
Community Expert ,
Nov 13, 2016 Nov 13, 2016

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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Nov 16, 2016 Nov 16, 2016

Copy link to clipboard

Copied

Indeed! Thanks a lot Per.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 29, 2024 Aug 29, 2024

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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 29, 2024 Aug 29, 2024

Copy link to clipboard

Copied

LATEST

This is not relevant to Lightroom Classic.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines