If you are using older Command Prompt (cmd.exe):
dir *.jpg *.mp4 *.avi /O-D
Using exiftool to update JPG metadata or ffmpeg to remux videos without re-encoding (updating container): l filedot ls vids jpg upd
# Update all JPGs with a new copyright tag
exiftool -Copyright="Your Name" *.jpg
Imagine you're in a directory with a mix of video and image files, and you want to organize them. You might use a series of commands to list files, find specific types, and then update their organization. If you are using older Command Prompt ( cmd
Here is how we translate your shorthand into a functional command: Using exiftool to update JPG metadata or ffmpeg
upd (Update Date): We need to sort by "time modified" (-t flag) and reverse the order (-r flag) so the newest files are at the bottom or top depending on preference.