#! /usr/bin/python


import os, sys

n = 90

print str(n)

x = str(n)
xx = str(n*2)
xxx = str(n*3)
y = str(n)
yy = str(n*2)
yyy = str(n*3)


os.system(" convert -scale " + x +"x" + x + " -delay 33 1,*sq.jpg CALCO,Day1.gif")



os.system(" convert -scale " + x +"x" + x + " -delay 66 2,*sq.jpg CALCO,Day2.gif")

os.system("   convert -scale " + xx + "x" + yy + " -delay 100 3,*sq.jpg CALCO,Day3.gif")

os.system("   convert -scale "+x+"x"+yy+" -delay 133 4,*vert.jpg CALCO,Day4.gif")


os.system(" convert -scale "+xx+"x"+y+" -delay 166 BW,1,*rec.jpg CALCO,BW,Day1.gif")

os.system("   convert -scale " + x +"x" + x + " -delay 200 BW,2,*sq.jpg CALCO,BW,Day2.gif")

os.system(" convert -scale " + x +"x" + x + " -delay 233 BW,3,*sq.jpg CALCO,BW,Day3.gif")


os.system("    convert -scale " + x +"x" + x + " -delay 266 BW,4,*sq.jpg CALCO,BW,Day4.gif")


os.system("convert -scale "+xxx+"x"+y+" -delay 266 Rhossili,*panorama.jpg CALCO,Rhossili.gif")

os.system("   convert -scale " + x +"x" + x + " -delay 200 theaudience,*sq.jpg CALCO,theaudience.gif")

os.system(" convert -scale " + x +"x" + x + " -delay 366 1,*sq.jpg CALCO,People.gif")


os.system(" convert -scale "+xx+"x"+y+" -delay 200 jnr,Pub*rec.jpg CALCO-jnr,Pub.gif")

os.system(" convert -scale " + x +"x" + x + " -delay 75 jnr,Talks*sq.jpg CALCO-jnr,Talks.gif")

os.system("  convert -scale " + xx + "x" + yy + " -delay 125 jnr,Beach*sq.jpg CALCO-jnr,Beach.gif")



