Skip to content

Instantly share code, notes, and snippets.

@mabe-at
Created June 7, 2018 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mabe-at/c046f4b4227fca86a414e7a84ad6713c to your computer and use it in GitHub Desktop.
Save mabe-at/c046f4b4227fca86a414e7a84ad6713c to your computer and use it in GitHub Desktop.
imagemagick deinterlace
#!/bin/sh
#
# deinterlace image...
# from https://www.imagemagick.org/Usage/scripts/
#
# Smoothly double up every second line so as to de-interlace video snapshots.
#
exec mogrify -filter point -resize 100%x50% +filter -resize 100%x200% "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment