We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f405f8 commit 6292a42Copy full SHA for 6292a42
Sobolev/make_gif.py
@@ -8,13 +8,11 @@
8
list_files_20pts = natsorted([f for f in list_files if "20_npts" in f])
9
list_files_100pts = natsorted([f for f in list_files if "100_npts" in f])
10
11
-print "\n".join(list_files_20pts)
12
-
13
str_20pts = " ".join(list_files_20pts)
14
str_100pts = " ".join(list_files_100pts)
15
16
-cmd = "convert -delay 80 -loop 0 %s figures/tang_20pts.gif" % str_20pts
+cmd = "convert -delay 80 -resize 600x600 -loop 0 %s figures/tang_20pts.gif" % str_20pts
17
subprocess.call(shlex.split(cmd))
18
19
-cmd = "convert -delay 80 -loop 0 %s figures/tang_100pts.gif" % str_100pts
+cmd = "convert -delay 80 -resize 600x600 -loop 0 %s figures/tang_100pts.gif" % str_100pts
20
0 commit comments