Directing emu towards filtered <targets> #423
Unanswered
DougPHynes
asked this question in
Q&A
Replies: 1 comment
-
Great idea. I've created #424 to track this as a feature request. In the meantime. yeah, use another language to script your execution of EMU. It will be a fair bit slower, but it will work. In PowerShell (something like): Get-Content file-list.txt | ForEach-Object { Emu.exe rename --new-offset "+10:00" $_ } In R, it's a loop running system commands to run the Eme process |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a task that involves finding recordings with incorrect offsets, i.e., where offsets don't align with daylight saving time (yes, I live in a foolish place that switches their clocks twice a year 😒). Once I find those recordings, I can adjust the incorrect offsets using EMUs awesome
rename
command. Is it possible to feed EMU an object/ls/dir that had filtered recordings based on the time stamps in their filenames (into other words, "find all .flac recursively between 20221106T020000-0300 and 20220312T02000-0300, thenrename
with--new-offset
)? I can't seem to pull this off with the wildcard options, without moving around files by hand (into new directories). Another thought I had was to shape and filter by datetime in R (as I have limited PS skills and run EMU through R somehow)...Beta Was this translation helpful? Give feedback.
All reactions