Collection of scripts to make automatic video highlights of varying quality
Vous ne pouvez pas sélectionner plus de 25 sujetsLes noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
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)