From b93d613fab3384339b5aea582bbf27a85b2fc79c Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Fri, 11 Nov 2022 18:24:37 -0800 Subject: [PATCH] video-setup: improve docs --- lib/Command/VideoSetup.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/Command/VideoSetup.php b/lib/Command/VideoSetup.php index 6afa8669..122ac29e 100644 --- a/lib/Command/VideoSetup.php +++ b/lib/Command/VideoSetup.php @@ -128,7 +128,7 @@ class VideoSetup extends Command $this->config->setSystemValue('memories.transcoder', $goVodPath); $this->config->setSystemValue('memories.no_transcode', false); - $output->writeln('Transcoding and HLS are now enabled!'); + $output->writeln('Transcoding and HLS are now enabled! Monitor the output at /tmp/go-vod.log for any errors'); // Check for VAAPI $output->writeln("\nChecking for QSV (/dev/dri/renderD128)"); @@ -139,6 +139,9 @@ class VideoSetup extends Command $this->config->setSystemValue('memories.qsv', false); $output->writeln('QSV is now disabled'); } else { + $output->writeln("\nQSV is now enabled. You may still need to install the Intel Media Driver"); + $output->writeln("and ensure proper permissions for /dev/dri/renderD128."); + $output->writeln('See the documentation for more details.'); $this->config->setSystemValue('memories.qsv', true); } } else {