Javicle - a JSON Video Composition Language
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
há 3 anos
123456789101112131415161718192021222324252627282930
  1. #!/bin/bash
  2. #
  3. # Run JVCL on a spec
  4. #
  5. # Usage:
  6. #
  7. # jvcl [-t temp-dir] [-n] spec-file
  8. #
  9. # spec-file : the JVCL to run. If omitted, read a spec from stdin
  10. #
  11. # -t temp-dir : where to write generated assets. If omitted, jvcl will
  12. # create a new temporary directory
  13. #
  14. # -n : print commands that would have been run, but don't
  15. # actually run anything
  16. #
  17. # Note: If the JVCL jar does not exist, it will be built from source.
  18. # The first time you run it, it might take a long time to start up.
  19. #
  20. SCRIPT="${0}"
  21. SCRIPT_DIR="$(cd "$(dirname "${SCRIPT}")" && pwd)"
  22. JVCL_SKIP_ENV_VAR_HELP=1
  23. . "${SCRIPT_DIR}"/jvcl_common
  24. DEBUG=""
  25. if [[ -n "${JVCL_DEBUG}" ]] ; then
  26. DEBUG="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005"
  27. fi
  28. java -cp "${JVCL_JAR}" ${DEBUG} jvcl.main.Jvcl "${@}"