Help with ffmpeg for Decky Recorder

Hi, I'm trying to get Decky Recorder working on my Legion Go.

Standard recording works fine, but rolling recording works by stitching together a handful of video files.

The command it runs is:

ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -vaapi_device /dev/dri/renderD128 -f concat -safe 0 -i {self._rollingRecordingFolder}/files -c copy "{self._localFilePath}/{app_name}-{clip_duration}s-{dateTime}.{self._fileformat}


And this results in the error:

ffmpeg: /tmp/_MEIGUg4Lx/libssl.so.3: version `OPENSSL_3.2.0' not found (required by /lib64/libcurl.so.4)


Can't think for the life of me why ffmpeg would trigger a call to openssl, and with the read only file system it's difficult to just compile with dependencies.

Any thoughts on a solution to this? Or would you go with installing a standalone ffmpeg and pushing commands through that instead?
Was this page helpful?