Script para compilação

De Física Computacional
Revisão de 18h14min de 30 de abril de 2022 por Wallec (discussão | contribs)
Ir para navegação Ir para pesquisar

Script para automatizar a criação dos vídeos.

#!/bin/bash

# Run all the scripts
# Compile the C code -> Run the executable -> Run the gnuplot script -> Create the video file from the images on the img folder

name=$(date +%s)

gcc fput.c -lm
./a.out
mkdir -p ../img/$name
gnuplot -e "dir='$name'" graph.plt
mkdir -p video
ffmpeg -r 120 -i ../img/$name/fput%d.png -vcodec libx264 -crf 25 -pix_fmt yuv420p ../video/output-$name.mp4