Difference between revisions of "ReNamer:Scripts"
Jump to navigation
Jump to search
(→3rd party libraries: ExifTool script added.) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 29: | Line 29: | ||
Each of these scripts needs a third-party software ("library"). | Each of these scripts needs a third-party software ("library"). | ||
− | Download the software as directed, | + | Download and install the required software as directed, before using these scripts. |
− | |||
{| class="wikitable" | {| class="wikitable" | ||
Line 48: | Line 47: | ||
| Extract EXIF/IPTC/XMP tags from any images. | | Extract EXIF/IPTC/XMP tags from any images. | ||
| http://www.den4b.com/forum/viewtopic.php?id=407<br/>http://www.den4b.com/forum/viewtopic.php?id=109 | | http://www.den4b.com/forum/viewtopic.php?id=407<br/>http://www.den4b.com/forum/viewtopic.php?id=109 | ||
+ | |- | ||
+ | | [[ReNamer:Scripts:ExifTool|ExifTool]] | ||
+ | | Extract EXIF/IPTC/XMP tags from any images. | ||
+ | | | ||
|- | |- | ||
| [[ReNamer:Scripts:MediaInfo|MediaInfo]] | | [[ReNamer:Scripts:MediaInfo|MediaInfo]] | ||
| Extract meta information from audio and video files. | | Extract meta information from audio and video files. | ||
+ | | | ||
|} | |} | ||
== User scripts == | == User scripts == | ||
+ | The following scripts are taken from the User forum. In some cases, links are provided to the thread, so that you can check the details of the use case. | ||
{| class="wikitable" | {| class="wikitable" |
Latest revision as of 12:32, 6 January 2020
This page contains a collection of scripts which can be used in ReNamer's PascalScript rule.
Educational scripts
Script | Description |
---|---|
Initialize | How to initialize the code. |
Import DLL | Demonstrates how to call functions of 3rd party DLL. |
Date and Time | How to use date and time of the file. |
Move filename portion | How to move part of the filename to a new position. |
Index filenames | How to insert an incrementing number into the filename. |
3rd party libraries
Each of these scripts needs a third-party software ("library").
Download and install the required software as directed, before using these scripts.
Script | Description | Forum Link |
---|---|---|
TrID | Detecting file extension. | http://www.den4b.com/forum/viewtopic.php?id=550 |
Xpdf | Extract PDF tags. | http://www.den4b.com/forum/viewtopic.php?id=349 |
Exiv2 | Extract EXIF/IPTC/XMP tags from any images. | http://www.den4b.com/forum/viewtopic.php?id=407 http://www.den4b.com/forum/viewtopic.php?id=109 |
ExifTool | Extract EXIF/IPTC/XMP tags from any images. | |
MediaInfo | Extract meta information from audio and video files. |
User scripts
The following scripts are taken from the User forum. In some cases, links are provided to the thread, so that you can check the details of the use case.
Script | Description | Forum Link |
---|---|---|
Separate words | Insert a space in front of each capitalized letter. | http://www.den4b.com/forum/viewtopic.php?pid=2529#p2529 |
AVI video codec | Extract name of video codec used encoding AVI file. | http://www.den4b.com/forum/viewtopic.php?pid=3484#p3484 |
RegEx Case Convertion | Convert case of capturing groups of your regular expression. | http://www.den4b.com/forum/viewtopic.php?pid=3454#p3454 http://www.den4b.com/forum/viewtopic.php?pid=3459#p3459 |
Using MasterFile | Renaming folder basing on the MetaTag of the first file in the folder. In this particular case: adding the ID3_Year metatag from the mp3 file to it's parent folder name. | http://www.den4b.com/forum/viewtopic.php?pid=1626#p1626 |
Hours span | Add hours to a date embedded in the filename in format "yyyy-mm-dd hh-nn-ss.JPG". | http://www.den4b.com/forum/viewtopic.php?id=696 |
Roman numerals serialization | Serialization with Roman numerals. | http://www.den4b.com/forum/viewtopic.php?id=828 http://www.den4b.com/forum/viewtopic.php?pid=3327#p3327 |
EAN-13 checksum | Calculate the checksum digit for the EAN-13 barcode. | http://www.den4b.com/forum/viewtopic.php?id=930 |
Serialize duplicates | Serialize duplicated filenames by append a counter to the filename. | |
Partial case change | Change case of specific parts of the file name. | |
URL decode | Decode a URL encoded filename. | |
Index files per folder | This script adds a serialization index to the end of every file on per folder basis. The index is incremented only when the folder path changes. | |
Random characters and length | Generate new names consisting of random selection of characters and of random length. | |
Convert file content from ANSI to UTF-8 | Convert the content of processed files from ANSI (default system code page) to UTF-8 encoding. |