How to make movies in VMD

From Computational Biophysics and Materials Science Group
Jump to: navigation, search

Credit to Madison Block and Sam Battey

From here

When setting or changing your working directory or destination folder in the command prompt make sure that if there is a space in your file name, that you put the whole thing in quotation marks. example (incorect way): cd c:\Users\Madison Block\VMD_movie example (the right way): cd “c:\User\Madison Block\VMD_movie” I learned this through trial and error.  :) Hope this helps! :)


To make a movie using a PC:

  1. From the VMD main click Extensions then Visualization then Movie Maker.
  2. Select your Renderer (Internal Tachyon gives you a much clearer video).
  3. Select your preferred Movie Settings. Make sure to Un-Check the delete image files
  4. Set your Working Directory. (This is where your movie file will be placed after the rendering has completed). For faster rendering, you would choose /tmp, because files are saved on the local disk of your computer instead of over lab network to savor.
  5. Name your movie.
  6. Change your movie duration from 0 to whatever you want it to be. (A good starting time is 5 to 10 seconds). NOTE: Movies using trajectories cannot have their durations altered.
  7. Click the Make Movie Button. (Depending which render you are using this process can take an hour or longer).
  8. When the render is complete it may ask you to specify a new path, say no. Now open the command prompt.
  9. Make sure that you are in the correct folder in your command prompt. That folder should be where you set your working directory for your movie. (if it is not in the correct folder hit cd ________[whatever the folder name is])
  10. When in the correct folder you will type:
    ffmpeg -r 10 -b 3000k -i yourmovietitle.%04d.bmp yourmovietitle.mp4
  11. For Windows PowerPoint compatible (insertable) video file, use:
    ffmpeg -r 10 -b 3000k -i yourmovietitle.%04d.bmp yourmovietitle.wmv
    • There is some syntax to worry about though.
      • the input file type has to match what is in your working directory. The image files are often saved as .ppm files for different types of videos, so instead of .bmp as your input, you’ll change it to .ppm.
      • The .%04d. has to match the saved files as well. Take a look at the images; they’re saved as “yourmovietitle.0000.bmp.” The .%04d. corresponds to the digits after the title. If there are four digits, you use %04d, if there are five digits you use %05d, ect. ect.
      • If you want an output file that isn’t an mp4, simply change the file type in the command line. You could also use the following line of code while in the proper directory:
        convert yourmovietitle.mp4 yourmovietitle.desiredfiletype
  12. Then type dir for directory to make sure that it shows up in the specified folder.
  13. Then you can go into the working directory folder and double click on your new movie!!! Quicktime should pop up and play the movie.