<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-size:small">Andrea, now this is "easy peasy"!  Using the example you provided below, all you need is to create a file in a non-Cinelerra directory (so it does not get deleted).  For example, I created /tmp/andrea.sh that only contains the one line (it is one line altogether but there is such a thing in linux for a continuation line if it gets too long):</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">ffmpeg -i "$1" -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi</div></div><div><br></div><div><div style="font-size:small" class="gmail_default">Also, in your 1 line above, keep in mind that y.avi, u.avi, and v.avi MUST have full pathnames or your output files will end up in whichever directory you are running in.  And just as important, you must use "-y" to answer "yes" to overwrite the files or else it will prompt you in the Cinelerra startup window.</div></div><div><br></div><div class="gmail_quote"><div style="font-size:small" class="gmail_default">Note the "$1" - that is the first argv and in Cinelerra, all you would have to do is go to the Resource window and highlight the "video.avi" file you used in your example and then go to the Shell Cmds icon and click on Andrea instead of Shortcuts, for example.  Of course, you have to set up the Andrea command first in Settings-> Preferences, Interface tab "Shell Commands".  I updated use of Shell Commands in chapter trouble here locally but have included it below.</div><div style="font-size:small" class="gmail_default"><br></div><div style="font-size:small" class="gmail_default">I will attempt to make an example.<br></div><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
I was wondering if it was possible to include in ShellCmd some ffmpeg<br>
filters that do not work in CinnGG.<br>
<br>
The commands are as follows:<br>
<br>
EXTRACTPLANES<br>
<br>
ffmpeg -i video.avi -filter_complex 'extractplanes=y+u+v[y][u][v]'<br>
-map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi<br>
<br><br>
</blockquote></div></div>