Spaces:
Runtime error
Runtime error
File size: 385 Bytes
c34ed4d 27ec4d8 c34ed4d 1b97317 c34ed4d bc9223a 737355b c34ed4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
rm -r "./results"
mkdir "./results"
python3 train.py --mode=test \
--world_size=1 --dataloaders=2 \
--test_input_poses_images=./poses/ \
--test_input_person_images=./character_sheet/ \
--test_output_dir=./results/ \
--test_checkpoint_dir=./weights/
echo Generating Video...
ffmpeg -r 30 -y -i ./results/%d.png -r 30 -c:v libx264 -pix_fmt yuv420p output.mp4 -crf 18 -r 30
echo DONE.
|