Collection of scripts to make automatic video highlights of varying quality
Você não pode selecionar mais de 25 tópicosOs tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Can be tested using existing json files eg:
import random
for source in json_in["sources"]:
time = round(random.uniform(30, 600), 2)
print("Finding nearest keyframe to {} in {}".format(
time, source["filepath"]))
print("Nearest keyframe: {}-{}".format(
time, nearest_keyframe(source["filepath"], time)))
import sys
sys.exit(0)