Javicle - a JSON Video Composition Language
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
před 3 roky
123456789101112131415161718192021222324252627282930
  1. #!/bin/bash
  2. #
  3. # Run JVC on a spec
  4. #
  5. # Usage:
  6. #
  7. # jvc [-t temp-dir] [-n] spec-file
  8. #
  9. # spec-file : the JVC to run. If omitted, read a spec from stdin
  10. #
  11. # -t temp-dir : where to write generated assets. If omitted, jvc 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 JVC 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. JVC_SKIP_ENV_VAR_HELP=1
  23. . "${SCRIPT_DIR}"/jvc_common
  24. DEBUG=""
  25. if [[ -n "${JVC_DEBUG}" ]] ; then
  26. DEBUG="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005"
  27. fi
  28. java -cp "${JVC_JAR}" ${DEBUG} jvc.main.Jvc "${@}"