Hi!
I'm trying to get a small batch working. I should rename the files with a new title and the video dimensions.
@echo off
set /p fname= Enter Video Title:
exiftool "-FileName<$%fname%_{videoframesizew}" -ext "*" .
...which isn't working. Any ideas?
Output is (with fname = "test":
Warning: [minor] Tag 'test_' not defined - ./VideoFile.flv
Warning: No writable tags set from ./VideoFile.flv
Try this:
@echo off
set /p fname= Enter Video Title:
exiftool "-FileName<%fname%_${videoframesizew}.%e" -ext "*" .
The dollar sign must come before the tag name.
- Phil
Wow, what a super quick response! Thanks a lot! :)