add something to record to video

main
annieversary 2021-08-15 21:28:42 +02:00
parent 0e4bf1ed7c
commit c40807fc16
5 changed files with 53 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/target
.DS_Store
recordings/*

1
Cargo.lock generated
View File

@ -2300,6 +2300,7 @@ name = "spircles"
version = "0.1.0"
dependencies = [
"nannou",
"once_cell",
]
[[package]]

View File

@ -5,3 +5,4 @@ edition = "2018"
[dependencies]
nannou = "0.17"
once_cell = "1.8.0"

View File

@ -53,20 +53,22 @@ const fn bg_color(i: i32, j: i32) -> Rgb<u8> {
fn view(app: &App, _model: &Model, frame: Frame) {
let draw = app.draw();
let t = frame.nth() as f32 / 60.0;
draw.background().color(BG);
for i in -4..=4 {
for j in -4..=4 {
let speed = map_range((i + j).abs() as f32, 0.0, 8.0, 0.1, 2.0);
let dis = (app.time * speed).sin() * 10.0;
let dis = (t * speed).sin() * 10.0;
let circ_offset = vec2(
(app.time + (i * i) as f32).sin() * dis,
(app.time + (j * i) as f32).cos() * dis,
(t + (i * i) as f32).sin() * dis,
(t + (j * i) as f32).cos() * dis,
);
let x = i as f32 * 100.0 * (app.time * 0.7).sin();
let y = j as f32 * 100.0 * (app.time * 0.7).cos();
let x = i as f32 * 100.0 * (t * 0.7).sin();
let y = j as f32 * 100.0 * (t * 0.7).cos();
draw.ellipse()
.w_h(40.0, 40.0)
@ -80,4 +82,33 @@ fn view(app: &App, _model: &Model, frame: Frame) {
}
draw.to_frame(app, &frame).unwrap();
record(app, &frame);
}
use once_cell::sync::Lazy;
static RECORDING: Lazy<bool> = Lazy::new(|| {
let args: Vec<String> = std::env::args().collect();
args.len() > 1 && args[1] == "-record"
});
fn record(app: &App, frame: &Frame) {
if !*RECORDING {
return;
}
// save frame
let path = app
.project_path()
.expect("failed to locate `project_path`")
// Capture all frames to a directory called `/<path_to_nannou>/nannou/simple_capture`.
.join("recordings")
.join(app.exe_name().unwrap())
// Name each file after the number of the frame.
.join(format!("{:03}", frame.nth()))
// The extension will be PNG. We also support tiff, bmp, gif, jpeg, webp and some others.
.with_extension("png");
println!("frame: {} {:.3}", frame.nth(), frame.nth() as f32 / 60.0);
app.main_window().capture_frame(path);
}

14
record.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
set -e
if [[ -z $1 ]]; then
echo "plays the thingy and records it"
echo "example:"
echo -e "\t$0 packagename"
else
rm -rf "recordings/$1"
cargo run --release --package $1 -- -record
ffmpeg -framerate 60 -i "recordings/$1/%03d.png" -pix_fmt yuv420p "recordings/$1.mp4"
echo "done"
fi