File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Features:
2727
2828## Config
2929
30- Place your config file in ` ./transcode.yml ` (or ` /etc/transcode/transcode.yml ` ). The streams are defined like this:
30+ Place your config file in ` ./config.yaml ` (or ` /etc/transcode/config.yaml ` ). The streams are defined like this:
3131
3232``` yaml
3333streams :
@@ -75,7 +75,7 @@ docker build -t go-transcode:latest .
7575docker run --rm -d \
7676 --name="go-transcode" \
7777 -p "8080:8080" \
78- -v "${PWD}/transcode .yaml:/app/transcode .yaml" go-transcode:latest
78+ -v "${PWD}/config .yaml:/app/config .yaml" go-transcode:latest
7979` ` `
8080
8181# # Nvidia GPU support (docker)
@@ -97,7 +97,7 @@ docker run --rm -d \
9797 --gpus=all \
9898 --name="go-transcode-nvidia" \
9999 -p "8080:8080" \
100- -v "${PWD}/transcode .yaml:/app/transcode .yaml" go-transcode-nvidia:latest
100+ -v "${PWD}/config .yaml:/app/config .yaml" go-transcode-nvidia:latest
101101` ` `
102102
103103# ## Supported inputs
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ services:
88 ports :
99 - " 8080:8080"
1010 volumes :
11- - ./transcode .yaml:/app/transcode .yaml
11+ - ./config .yaml:/app/config .yaml
1212 command : serve -d
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if [ $# -lt 1 ] || [ ! -f "$1" ]; then
77 exit 1
88fi
99
10- tmpfile=$( mktemp --suffix .yml )
10+ tmpfile=$( mktemp --suffix .yaml )
1111log=$( mktemp)
1212
1313BASE_PORT=8888
You can’t perform that action at this time.
0 commit comments