Running Live Transcoder without GPU
If your instance doesn't feature Nvidia GPU, you may still run Live Transcoder with pipelines which don't involve GPU processing.
This currently means use-cases with interlaced framerate/standards conversion.
Recommended instance type for AWS EC2 c5a.16xlarge
To enable CPU-only run, the docker-compose.yml must be changed this way:
- Open docker-compose.yml with a text editor:
vim docker-compose.yml
or
nano docker-compose.yml
- Delete or comment out (
#
) this line underenvironment
:
- NVIDIA_VISIBLE_DEVICES=all
- Save the file (in the vim editor press
<esc>
key, then:wg
+<enter>
; in the nano editor press<ctrl>
+X
and confirm by pressingY
, then<enter>
)
Updated about 2 months ago