Yup, that is why I think it is made of composites...rambarra said:I was just guessing that if you, for example, make consequential 30 sec long exprosures you will add a segment to the top and delete a segment from the tail of the trail and it won't be a smooth movement as seen here
rpt said:Yup, that is why I think it is made of composites...rambarra said:I was just guessing that if you, for example, make consequential 30 sec long exprosures you will add a segment to the top and delete a segment from the tail of the trail and it won't be a smooth movement as seen here
If you put a mouse pointer at the end of a trail, it seemed to me that the frame advance was about 1/5 th. the star trail length; hence my magic number of 5...
I am just plain lazy. So is there a software program to merge the individual exposures? Also, how did you arrive at the magic number of 32? BTW, I like 32 better than 5...joshmurrah said:rpt said:Yup, that is why I think it is made of composites...rambarra said:I was just guessing that if you, for example, make consequential 30 sec long exprosures you will add a segment to the top and delete a segment from the tail of the trail and it won't be a smooth movement as seen here
If you put a mouse pointer at the end of a trail, it seemed to me that the frame advance was about 1/5 th. the star trail length; hence my magic number of 5...
this, definitely.
It's something like this: Take roughly 130, one second exposures. Then it's a startrail of 1-30 for frame 1, frames 2-31 for frame 2, frames 3-32 for frame 3...repeated roughly 100 times for the 4 seconds of video. Pretty cool effect but WOW tedious.
pardus said:Way longer exposures, 30 sec or more and no delay between shots
+1000bvukich said:pardus said:Way longer exposures, 30 sec or more and no delay between shots
No. The star trails overlap from frame to frame. This is rolling sets of N frames stacked, like joshmurrah said.
rpt said:+1000bvukich said:pardus said:Way longer exposures, 30 sec or more and no delay between shots
No. The star trails overlap from frame to frame. This is rolling sets of N frames stacked, like joshmurrah said.
Do you know of a software that would merge "n" images given their file paths?
bvukich said:rpt said:+1000bvukich said:pardus said:Way longer exposures, 30 sec or more and no delay between shots
No. The star trails overlap from frame to frame. This is rolling sets of N frames stacked, like joshmurrah said.
Do you know of a software that would merge "n" images given their file paths?
I'd write a shell script to do it. In fact, I probably still have some image series' left from last time I did a star time lapse, so I'll slap something together tonight. I'll share the scripts once I'm done. They'll be for Linux, but should be easily adaptable to a Mac. Sorry Windows users.
#!/bin/bash
FILESPAN=30
NUMBEROFFILES=`ls img_*.jpg | wc -l`
LOOPCOUNT=$(($FILESPAN+$NUMBEROFFILES-1))
for i in $(eval echo {1..$LOOPCOUNT})
do
CUTSTART=$(($i-30))
if [ $CUTSTART -le 1 ]; then CUTSTART=1;fi
CUTEND=$i
if [ $CUTEND -ge $NUMBEROFFILES ]; then CUTEND=$NUMBEROFFILES;fi
enfuse --output=eimg_$i.jpg `ls img_*.jpg | cut -d'
' -f$CUTSTART-$CUTEND`
done
That is interesting! Thank you.samsettle said:
Cool! Thanks.bvukich said:I need to adjust the setting for enfuse, but this is what I have so far. It blends the images, ramping up to whatever the max is ($FILESPAN) then ramps back down at the end.
Code:#!/bin/bash FILESPAN=30 NUMBEROFFILES=`ls img_*.jpg | wc -l` LOOPCOUNT=$(($FILESPAN+$NUMBEROFFILES-1)) for i in $(eval echo {1..$LOOPCOUNT}) do CUTSTART=$(($i-30)) if [ $CUTSTART -le 1 ]; then CUTSTART=1;fi CUTEND=$i if [ $CUTEND -ge $NUMBEROFFILES ]; then CUTEND=$NUMBEROFFILES;fi enfuse --output=eimg_$i.jpg `ls img_*.jpg | cut -d' ' -f$CUTSTART-$CUTEND` done
I'll post something more final, which will also resize and make the movie later tonight.
#!/bin/bash
FILESPAN=30
NUMBEROFFILES=`ls img_*.jpg | wc -l`
LOOPCOUNT=$(($FILESPAN+$NUMBEROFFILES-1))
for FILE in img_*.jpg ; do convert $FILE -background black -gravity south -extent 4272x2403 -resize 1920x1080 RE$FILE ; done
for i in $(eval echo {1..$LOOPCOUNT})
do
CUTSTART=$(($i-30))
if [ $CUTSTART -le 1 ]; then CUTSTART=1;fi
CUTEND=$i
if [ $CUTEND -ge $NUMBEROFFILES ]; then CUTEND=$NUMBEROFFILES;fi
enfuse --hard-mask --exposure-weight=0 --saturation-weight=0 --contrast-weight=1 --output=EFimg_`printf "%04d" $i`.jpg `ls REimg_*.jpg | cut -d'
' -f$CUTSTART-$CUTEND`
done
mencoder "mf://EFimg_*.jpg" -mf fps=10 -o TLapse.avi -ovc lavc -lavcopts vcodec=mjpeg
#!/bin/bash
FILESPAN=60
NUMBEROFFILES=`ls img_*.jpg | wc -l`
LOOPCOUNT=$(($FILESPAN+$NUMBEROFFILES-1))
for FILE in img_*.jpg ; do convert $FILE -background black -gravity south -extent 4272x2403 -resize 4096x2304 RE$FILE ; done
for i in $(eval echo {1..$LOOPCOUNT})
do
CUTSTART=$(($i-$FILESPAN))
if [ $CUTSTART -le 1 ]; then CUTSTART=1;fi
CUTEND=$i
if [ $CUTEND -ge $NUMBEROFFILES ]; then CUTEND=$NUMBEROFFILES;fi
enfuse --hard-mask --exposure-weight=0 --saturation-weight=0 --contrast-weight=1 --output=EFimg_`printf "%04d" $i`.jpg `ls REimg_*.jpg | cut -d'
' -f$CUTSTART-$CUTEND`
done
mencoder "mf://EFimg_*.jpg" -mf fps=30 -o TLapse.avi -ovc lavc -lavcopts vcodec=mjpeg