11 lines
290 B
Bash
Executable File
11 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd "$(dirname $0)/.."
|
|
source scripts/env.sh
|
|
|
|
$DFL_PYTHON "$DFL_SRC" videoed video-from-sequence \
|
|
--input-dir "$DFL_WORKSPACE/data_src/aligned" \
|
|
--output-file "$DFL_WORKSPACE/result.avi" \
|
|
--include-audio \
|
|
--reference-file "$DFL_WORKSPACE/data_dst.*"
|
|
|