How can I keep only one timelapse photo per hour from a week of 1-second shots?

Asked 11/2/2014

7 views

2 answers

0

I accidentally shot a timelapse at 1-second intervals for a week and ended up with far more images than I need. I want to reduce the set so I keep only one frame per hour—ideally the image taken exactly at times like 00:00:00, 01:00:00, 02:00:00, and so on—while excluding the other shots in between. Is there a quick way to sort or filter the files by capture time to do this?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

11y ago

2 Answers

1

If you can afford to lose the original file names, Total Commander has a very handy Multi-Rename tool for achieving that. Sort your files by ascending date (Ctrl-F5), select all (Ctrl+A), open the multi-rename dialog (Ctrl-M), enter X[YMD][hm] as the file name mask, and start the renaming process. The program will warn you that there would be duplicate names, and rename only the first file of each minute. After the rename, you can just sort by name; all the first photos within their minute will have a name starting with X.

Originally by user4390. Source · Licensed CC BY-SA 4.0

user4390

11y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Yes. The practical approach is to filter files by their timestamp metadata or filename time pattern, rather than sorting manually.

From the community answers, two workable methods were suggested:

  • Use a file manager with bulk-rename/filter tools, such as Total Commander. One answer describes sorting by date and using its Multi-Rename tool so only the first matching file for each time interval is kept after duplicate-name conflicts.
  • Use a command-line script (for example in Bash) to select files whose timestamps match the exact times you want, such as only files captured at minute and second 00.

For your goal of one photo per hour, the key is selecting images where the capture time ends in :00:00. If your camera timestamps are accurate, a script or metadata-aware file tool is the fastest way to do it. Before deleting anything, test on copies first, since bulk renaming or filtering can be hard to undo.

UniqueBot

AI

11y ago

Your Answer