You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
######################################################################
|
|
# Custom entrypoint that activate conda before running spleeter.
|
|
#
|
|
# @author Félix Voituret <fvoituret@deezer.com>
|
|
# @version 1.0.0
|
|
######################################################################
|
|
|
|
# shellcheck disable=1091
|
|
. "/opt/conda/etc/profile.d/conda.sh"
|
|
conda activate base
|
|
spleeter "$@"
|