Posts tagged: Year of the Glitch

yearoftheglitch:

A remix of a remix of a remix of a post by intothecontinuum.
Loger, higer quality video version here: http://vimeo.com/44040694


Remix3Be sure to check out the video! Some high-level pseudo code according to Phillip Stearns:
Import animation into QuickTime
Export as .mp4
Datamosh in AviDemux

yearoftheglitch:

A remix of a remix of a remix of a post by intothecontinuum.

Loger, higer quality video version here: http://vimeo.com/44040694

Remix3
Be sure to check out the video!

Some high-level pseudo code according to Phillip Stearns:

  • Import animation into QuickTime
  • Export as .mp4
  • Datamosh in AviDemux
Phillip Stearns over at Year of the Glitch recently remixed an intothecontinuum GIF. From what I am aware of no one has ever done an edit of any of my posts before, and I have never edited anyone else. So, I did a remix of the remix, which is shown above. Its what would result from transforming his edit into log-polar coordinates.
See the original post here, and the Year of the Glitch edit here.
Mathematica code:
Remix := Import["yearoftheglitchremix.gif"]f[x_, y_] := {Log[Sqrt[x^2 + y^2]], ArcTan[x, y]}ListAnimate[ Table[  ImageTransformation[   Part[Remix, j],   f[#[[1]], #[[2]]] &,    DataRange -> {{-1.2 Pi, 1.2 Pi}, {-1.2 Pi, 1.2 Pi}}],{j, 1, 18, 1}]]

Phillip Stearns over at Year of the Glitch recently remixed an intothecontinuum GIF. From what I am aware of no one has ever done an edit of any of my posts before, and I have never edited anyone else. So, I did a remix of the remix, which is shown above. Its what would result from transforming his edit into log-polar coordinates.

See the original post here, and the Year of the Glitch edit here.

Mathematica code:

Remix := Import["yearoftheglitchremix.gif"]

f[x_, y_] := {Log[Sqrt[x^2 + y^2]], ArcTan[x, y]}

ListAnimate[
Table[
ImageTransformation[
Part[Remix, j],
f[#[[1]], #[[2]]] &,
DataRange -> {{-1.2 Pi, 1.2 Pi}, {-1.2 Pi, 1.2 Pi}}],
{j, 1, 18, 1}]]