Tools for VMD
   
   
   
   
  -  
-  
-  
-  
-  
-  
   
   
   
Tools for NAMD
   
   
   
   
  -  
-  
-  
-  
   
   
   
Tools for R
   
   
   
   
  -  
-  
   
Notes
   
   
   
   
  - Download youtube video using chrome extension and choosing 8k UHD format
- Convert to gif: ffmpeg -i input.webm -pix_fmt rgb24 output.gif 
- ffmpeg -i in.mov -pix_fmt rgb8 -r 10 output.gif && gifsicle -O3 output.gif -o output.gif 
 - input path argument `-i` 
 - pixel format argument `-pix_fmt` 
 - removing some frames using framerate argument `-r` 
 - optimize the same output file with third option -O3 and rewrite the generated gif file from last step 
 - use && to make sure the conversion sucess before optimizing