User Tools

Site Tools


timelapse

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
timelapse [2020/05/30 11:40] josetimelapse [2020/05/30 13:49] jose
Line 43: Line 43:
   ffmpeg -r 24 -pattern_type glob -i '*.jpeg' -s hd1080 -vcodec libx264 timelapse.mp4   ffmpeg -r 24 -pattern_type glob -i '*.jpeg' -s hd1080 -vcodec libx264 timelapse.mp4
  
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +<code>
 +while read linea
 +do
 +convert -pointsize 60 -fill black -draw 'text 400,1575 "solsticio verano" ' $linea verano/$linea
 +done < <(ls *jpeg)
 +
 +#!/bin/bash
 +while read linea
 +do
 +convert -pointsize 60 -fill black -draw 'text 400,65 "solsticio invierno" ' $linea invierno/$linea
 +done < <(ls *jpeg)
 +
 +#!/bin/bash
 +while read linea
 +do
 +hora=`echo $linea | awk -F_ {'print $2'}|awk -F\. {'print $1'}|cut -c-2`
 +minuto=`echo $linea | awk -F_ {'print $2'}|awk -F\. {'print $1'}|cut -c3-`
 +convert -pointsize 60 -fill yellow -draw 'text 600,800 "'$hora':'$minuto'" ' $linea fecha/$linea
 +done < <(ls *jpeg)
 +
 +</code>