This page is a list of tools that might be useful
You can use Adobe Bridge to execute complicated file rename commands on bulk items. Very useful. There are several combinations depending on how you want to rename, here is the most common.
To change a filename for a batch of images with one sequential number per file (e.g 847.tif > mufs001-i0091-001.tif)
PART I
PART II
To insert new elements to a batch of files
This script will generate a list of IDs from a page of mods-search results. Type:
$ stripids.py /path/to/idlist.txt “http://localhost:8080/?q=prophet&field=full”
The command above will create a file called idlist.txt
that has all the item IDs from the search results page in the URL.
This list can be used with extract.py.
Usage:
This script will extract all the files that match a list of item IDs and optionally convert the files into additional formats.
The full list of options:
Options: -h, --help show this help message and exit -l LIST List of items to extract -o OUTDIR Specify output directory -j Convert tiff to jpeg -m Include metadata with files -d Create DC record. Used with -m option
To simply extract the TIFF files for a list of items, type:
extract.py -l /path/to/itemlist.txt -o /path/to/dir/
If you want to extract the TIFF files and the metadata:
extract.py -m -l /path/to/itemlist.txt -o /path/to/dir/
If you want to convert the files to Web optimized jpegs and the metadata to Dublin Core:
extract.py -jmd -l /path/to/itemlist.txt -o /path/to/dir/
To create a PDF of the extracted TIFFs or JPEGs, highlight all the files you want to bind together, right-click, and choose “Combine supported files in Acrobat.”
Usage:
This script is a little less user-friendly but could save time if there are a large number of changes to make.