diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 03:26:43 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 03:26:43 +0200 |
| commit | e03348c5d3b9de76b8794c19557b8a4c2f643e07 (patch) | |
| tree | a0ac7ba22ba0218e7d03c0b96cfbde06a6722f1f /live-mogrify.py | |
| parent | 2730b9661442cccda5f8462589dfa6821f23db27 (diff) | |
augment paths
Diffstat (limited to 'live-mogrify.py')
| -rw-r--r-- | live-mogrify.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/live-mogrify.py b/live-mogrify.py index 9fba009..ace2076 100644 --- a/live-mogrify.py +++ b/live-mogrify.py @@ -240,7 +240,7 @@ def process_live_input(opt, data_opt, rpc_client, model): create_render_dir(opt) sequence = read_sequence(data_opt.sequence_name) - print("Got sequence {}, {} images, first: {}".format(data_opt.sequence, len(sequence), sequence[0])) + print("Got sequence {}, {} images".format(data_opt.sequence, len(sequence))) # A_offset, A_im, A_dir = load_first_frame(opt, data_opt, 0) # A_offset, A_im, A_dir = load_first_frame(opt, data_opt, i) if len(sequence) == 0: @@ -248,6 +248,7 @@ def process_live_input(opt, data_opt, rpc_client, model): data_opt.processing = False rpc_client.send_status('processing', False) return + print("First image: {}".format(sequence[0])) rpc_client.send_status('processing', True) |
