Script para compilação: mudanças entre as edições
Ir para navegação
Ir para pesquisar
(Criou página com 'Script para automatizar a criação dos vídeos. <source lang='bash'> #!/bin/bash # Run all the scripts # Compile the C code -> Run the executable -> Run the gnuplot script...') |
Sem resumo de edição |
||
Linha 9: | Linha 9: | ||
name=$(date +%s) | name=$(date +%s) | ||
gcc | gcc fput.c -lm | ||
./a.out | ./a.out | ||
mkdir -p ../img/$name | mkdir -p ../img/$name |
Edição das 18h14min de 30 de abril de 2022
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