Intervallometer log for Timelapse batch conversion

Started by scrax, June 20, 2012, 06:33:21 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

scrax

can be add an options to generate a TLV_xxxx.SH when intervalometer is on?
So it can be used in for batch process a timelapse.

here an example based on what we have now for HDR:

TLV_9895.SH
#!/usr/bin/env bash

# TLV_9895.avi from IMG_9895.JPG ... IMG_9902.JPG
n=TLV_9895
for f in IMG_9895.JPG IMG_9896.JPG IMG_9897.JPG IMG_9898.JPG IMG_9899.JPG IMG_9900.JPG IMG_9901.JPG IMG_9902.JPG
do
mv $f timelapse/
done
cd timelapse/
echo "Generating timelapse..."
convert -delay 1x2 -limit memory 512mb -limit map 64mb *.JPG $n.mp4
echo "Done."


probably it could be better so fell free to post a better one
I'm using ML2.3 for photography with:
EOS 600DML | EOS 400Dplus | EOS 5D MLbeta5- EF 100mm f/2.8 USM Macro  - EF-S 17-85mm f4-5.6 IS USM - EF 70-200mm f/4 L USM - 580EXII - OsX, PS, LR, RawTherapee, LightZone -no video experience-

scrax

Since now the feat set for 2.3 are frozen and MLTools need this:
bump ;)
I'm using ML2.3 for photography with:
EOS 600DML | EOS 400Dplus | EOS 5D MLbeta5- EF 100mm f/2.8 USM Macro  - EF-S 17-85mm f4-5.6 IS USM - EF 70-200mm f/4 L USM - 580EXII - OsX, PS, LR, RawTherapee, LightZone -no video experience-

a1ex

Actually I thought to use some templates for these scripts - so the user can write them as easy or as advanced as he likes, and have a keyword like %files that gets replaced with the list of image names.

For intervalometer, one has to take care and save the script at shutdown hook, if it wasn't saved yet, since many people probably just turn off the camera.

scrax

That would be great i was thinking ablout just the list of file so "cat HDR_XXXX.SH" will be all what need.
I'm using ML2.3 for photography with:
EOS 600DML | EOS 400Dplus | EOS 5D MLbeta5- EF 100mm f/2.8 USM Macro  - EF-S 17-85mm f4-5.6 IS USM - EF 70-200mm f/4 L USM - 580EXII - OsX, PS, LR, RawTherapee, LightZone -no video experience-