this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add script to make mp4 of output

+5 -1
+1 -1
avatar_cube.py
··· 83 83 png = render_frame(deg_roll, deg_pitch, deg_yaw) 84 84 85 85 if dry_run: 86 - with open(f'cube-{steps}.png', 'wb') as f: 86 + with open(f'cube-{steps:03d}.png', 'wb') as f: 87 87 f.write(png) 88 88 return 89 89
+4
make_mp4.sh
··· 1 + #/bin/sh 2 + OUTPUT_FILE=$1 3 + FRAMERATE=6 4 + ffmpeg -framerate $FRAMERATE -i cube-%03d.png -c:v libx264 -crf 18 -pix_fmt yuv420p $OUTPUT_FILE