Compare commits

..

No commits in common. "034e2771ee6b9d6c631936a607900b320867f3ac" and "94fa6d0e2803de99e11a4e62de919d38c28d5058" have entirely different histories.

2 changed files with 7 additions and 3 deletions

View file

@ -525,6 +525,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"title": "Director", "title": "Director",
"type": ["string"], "type": ["string"],
"autocomplete": true, "autocomplete": true,
"columnRequired": true,
"columnWidth": 180, "columnWidth": 180,
"filter": true, "filter": true,
"sort": true, "sort": true,
@ -545,6 +546,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"title": "Batch", "title": "Batch",
"type": ["string"], "type": ["string"],
"autocomplete": true, "autocomplete": true,
"columnRequired": true,
"columnWidth": 180, "columnWidth": 180,
"filter": true, "filter": true,
"poster": true, "poster": true,
@ -555,6 +557,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"title": "Editing Tags", "title": "Editing Tags",
"type": ["string"], "type": ["string"],
"autocomplete": true, "autocomplete": true,
"columnRequired": true,
"columnWidth": 180, "columnWidth": 180,
"filter": true, "filter": true,
"sort": true "sort": true
@ -564,6 +567,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"title": "Tags", "title": "Tags",
"type": ["string"], "type": ["string"],
"autocomplete": true, "autocomplete": true,
"columnRequired": true,
"columnWidth": 180, "columnWidth": 180,
"filter": true, "filter": true,
"sort": true "sort": true
@ -1122,7 +1126,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
"collections": {}, "collections": {},
"columns": { "columns": {
"Colors": { "Colors": {
"columns": ["title", "type", "batch", "duration", "tags", "resolution"], "columns": ["title", "director", "language", "hue", "saturation", "brightness"],
"columnWidth": {} "columnWidth": {}
} }
}, },

View file

@ -135,7 +135,7 @@ def compose(clips, target=150, base=1024, voice_over=None):
if 'Whispered' in voc['src']: if 'Whispered' in voc['src']:
a, b = '6', '-3' a, b = '6', '-3'
elif 'Read' in voc['src']: elif 'Read' in voc['src']:
a, b = '6.25', '-2.75' a, b = '7', '-2'
elif 'Free' in voc['src']: elif 'Free' in voc['src']:
a, b = '5', '-4' a, b = '5', '-4'
elif 'Ashley' in voc['src']: elif 'Ashley' in voc['src']:
@ -225,7 +225,7 @@ def compose(clips, target=150, base=1024, voice_over=None):
transparency_front = transparency transparency_front = transparency
transparency_back = 0 transparency_back = 0
else: else:
transparency_back = random_choice(seq, [0.25, 0.5, 0.75, 1]) transparency_back = transparency
transparency_front = 0 transparency_front = 0
transparency_original = seq() / 9 transparency_original = seq() / 9
transparency_original = 1 transparency_original = 1