2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VMDを使った動画の作り方

Last updated at Posted at 2023-11-14

出力例.mp4

動作環境

  • Mac

必要なツール

  • VMD
  • ffmpeg
    • homebrew を導入済みなら, コマンドプロンプトに以下を入力します.
      brew install ffmpeg 
      

手順

VMDでファイルを出力する

  1. hoge.lammpstrj ファイルをVMDで出力します。

VMD Movie Makerを使用して連番画像を生成する

  1. 出力が完了したら、VMD Mainで Extensions -> Visualization -> Movie maker を選択します。
  2. 表示された VMD Movie Generator で以下の設定を行います:
    • Renderer: Snap Shot を選択します。
    • Movie Settings: Trajectory を選択し、4: Delete image files のチェックを外します。
    • Format: MPEG-1 を選択します。
    • Set working directory: Tフォルダにデフォルトが設定されていますが、作業しやすい場所に変更します。
    • Name of movie: ここでは仮に untitled のままとして説明します。
  3. Make Movie をクリックします。

画像から動画を生成する

  1. 画像出力が終了したら、出力された画像ファイルのディレクトリをカレントディレクトリにしたコマンドプロンプトを準備します。
  2. 以下のコマンドを入力します。(%05dは5桁の連番の場合です。3桁の場合は %03d に置き換えてください。)
    ffmpeg -r 30 -i untitled.%05d.ppm -vcodec libx264 -pix_fmt yuv420p -r 30 output.mp4
    
  3. 動画出力が終了したら、大量の残っている画像ファイルを次のコマンドで削除します。
    rm *.ppm
    

.ppmを.jpgに変換する

もし .ppm.png に変換したい場合は、次のコマンドを実行します。

ffmpeg -i output.ppm output.png
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?