/video-contact-sheet/trunk/dist/CHANGELOG |
---|
1,3 → 1,7 |
1.13.4 (?): |
+ BUGFIX: Actually use all alternative evasion offsets (Bugfix by Davide |
Cavestro) [#364] |
1.13.3 (2017-05-26): |
* Added codec IDs for h.265 and VP9 |
* BUGFIX: Fix handling of failed captures |
/video-contact-sheet/trunk/dist/vcs |
---|
2537,7 → 2537,7 |
local f=$1 out=$2 stamp=$3 prevent_evasion=$4 |
local alternatives= alt= delta= |
if [[ $prevent_evasion != '1' ]]; then |
for delta in $EVASION_ALTERNATIVES ; do |
for delta in ${EVASION_ALTERNATIVES[@]} ; do |
alt=$(awkexf "$stamp + $delta") |
if fptest $alt -gt 0 && fptest $alt -lt "${VID[$LEN]}" ; then |
alternatives+=( $alt ) |