Stephen Marsh
My feedback
13 results found
-
1 vote
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment Stephen Marsh commentedI can't reproduce this on a Mac... However, using a colon character is not a good idea for filenames as this can be an illegal character and having more than one period in a filename may confuse some operating systems or programs as to what the file extension may be..
-
1 vote
An error occurred while saving the comment Stephen Marsh commentedI asked over at the ExifTool forum and Phil Harvey was quick to add this feature:
Reset Sequential Numbering for Each Directory Processed (https://exiftool.org/forum/index.php?topic=9761.0)
exiftool -fileOrder Filename -Filename=%f_%-1.3C.%e -r 'system path to root/top-level folder to recursively process'
-
1 voteStephen Marsh shared this idea ·
-
6 votes
An error occurred while saving the comment Stephen Marsh commentedA similar issue in the following link, where I had to use ExifTool or a custom Bridge script to batch rename using milliseconds to avoid the long-standing 000 bug:
Stephen Marsh supported this idea · -
6 votes
An error occurred while saving the comment Stephen Marsh commentedA similar issue in the following link, where I had to use ExifTool or a custom Bridge script to batch rename using milliseconds to avoid the long-standing 000 bug:
Stephen Marsh supported this idea · -
2 votesStephen Marsh shared this idea ·
-
4 votes
An error occurred while saving the comment Stephen Marsh commentedI added a request for this years ago, but it appears to have been lost:
https://feedback.photoshop.com/photoshop_family/topics/bridge-batch-rename-using-any-xmp-data
Stephen Marsh supported this idea · -
4 votes
An error occurred while saving the comment Stephen Marsh commentedUntil there is a native feature, there is scripting:
#target bridge
clearPreservedFileName = {};// create an object
clearPreservedFileName.execute = function () {// create a method for that object
var sels = app.document.selections;// store the array of selected files
for (var i = 0; i < sels.length; i++) {//loop though that array
var md = sels[i].synchronousMetadata;// get the metadata for the file
md.namespace = "http://ns.adobe.com/xap/1.0/mm/";// set the namespace
md.PreservedFileName = "";//set the porperty
}
}
// this script only works in bridge
if (BridgeTalk.appName == "bridge") {
//create the munuItem
var menu = MenuElement.create("command", "Clear PreservedFileName from Metadata", "at the end of Tools");
menu.onSelect = clearPreservedFileName.execute;
} -
3 votes
An error occurred while saving the comment Stephen Marsh commentedI gave up waiting and wrote a script:
https://community.adobe.com/t5/bridge-discussions/script-to-batch-rename-as-title-case/td-p/14319096
I'd still like to see this as a native feature though. I'm sure that many others would too, despite the vote count showing otherwise. :]
Stephen Marsh shared this idea · -
29 votes
Hi,
We are happy to announce the release of Adobe Bridge 2024 (Version 14.0.0.102).
In this release, our team has successfully introduced the much-requested Multi-Window feature, Keyboard Shortcut customisation, Compress/Extract capability along with other enhancements.
For a complete list of features available in Bridge 2024 (v14.0), please refer to the community post :
https://community.adobe.com/t5/bridge-discussions/adobe-bridge-14-0-is-now-available/td-p/14081355
Regards,
Bridge Team
An error occurred while saving the comment Stephen Marsh commentedThank you for listening and finally implementing this request!
An error occurred while saving the comment Stephen Marsh commentedPhotoshop throws a warning that the the .JPEG extension is non-standard (for Photoshop).
More here:
https://community.adobe.com/t5/photoshop-ecosystem-discussions/jpg-jpeg/m-p/12760785
Stephen Marsh supported this idea · -
4 votes
An error occurred while saving the comment Stephen Marsh commentedIn the meantime, you can use the following setup to change extensions to uppercase or lowercase.
-
3 votesStephen Marsh supported this idea ·
Is this a raw file? Sounds like the xmp sidecar isn't being renamed to match.