Skip to content

ferulisses/TimelapseFromGoogleStreetView

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

TimelapseFromGoogleStreetView

Generate Time Lapse Movies from Google Street View

Watch out because you may be breaking Google's Terms of Service by using this. This is only intended to explore how it is possible to do it. Also, watch out for the usage limits of Google's APIs: by using this, you are making LOTS of calls to them, and you may easily use up your free limits.

A timelapse generated by the code

  1. load the script and its subdirectories onto a web server
  2. check the source code of app.js: the code contains the configurations in the variable definitions at the top of the file
  3. run the script by calling it up on your browser through the URL on your web server
  4. when the animated green dash reaches the end of the path on the map, the process is over and you can stop the script (close the browser window)
  5. then you will have the series of images in the "images" folder, and you just need to get them together into a video, for example using FFMPEG

for example you can use the FFMPEG command:

ffmpeg -framerate 1/5 -i image_%05d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4

About

Generate Time Lapse Movies from Google Street View

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 82.3%
  • PHP 8.0%
  • HTML 6.8%
  • CSS 2.9%