Script para compilação
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 -lm fput.c
./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