Skip to content

AtomicParsley

tatsuei edited this page Feb 10, 2021 · 2 revisions

Table of Contents

General

Writing metadata to files

for /R "C:/FlutterDart" %%i in (*.mp4) do (AtomicParsley "%%i" --title "%%~ni" --overWrite)

Reminder: Change ".mp4" to your file extensions!

Explanation:

  • /R = recursive search (search within all sub-directories)
  • %%i = for loop variable
  • %%~ni = keep only the filename
Clone this wiki locally