On Wed, 2024-07-17 at 09:12 +0200, Igor BEGHETTO via Cin wrote: > > > > > I am ignorant in Linux, so I would like to understand if the > > > instruction > > > export FFMPEG_EXTRA_CFG="--disable-decoder=vvc" > > > write something in somewhere or not
"export" makes something available outside the current (bash) shell as an environment variable. Try this: - printenv | grep -i blabla - export blabla=whatever - printenv | grep -i blabla MatN -- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

