Is there a movie showtime api? [closed]

when “allow_url_fopen” is disabled then use <?php /** * Google Showtime grabber * * This file will grab the last showtimes of theatres nearby your zipcode. * Please make the URL your own! You can also add parameters to this URL: * &date=0|1|2|3 => today|1 day|2 days|etc.. * &start=10 gets the second page etc… * … Read more

Creating a Movie from a Series of Plots in R [closed]

Here is one method I found using R help: To create the individual image frames: jpeg(“/tmp/foo%02d.jpg”) for (i in 1:5) { my.plot(i) } dev.off() To make the movie, first install ImageMagick. Then call the following function (which calls “convert”, part of ImageMagick I suppose): make.mov <- function(){ unlink(“plot.mpg”) system(“convert -delay 0.5 plot*.jpg plot.mpg”) } Or … Read more