Well getting this little misleading error message on this:
"At least one output file must be specified"
However running DebugView asside, I saw GetFlv slamming this silence
Exception:
...
[FFmpegException] Unknown encoder "original"...
And indeed that's more to point.

since anything else than selecting 'remux' (that'll cause the decoder name set to 'original') will work.
Couldn't resist to go in there a little deeper with ollydbg
Well changing the
CodecName from
original ->
copy like this:
c:\Program Files (x86)\GetFLV\config\profile\10001340.xml
<Profile DefID="10001340" DefName="AVI Video Remux(*.avi)" DeviceName="none" Enabled="1" DefType="0" Comment="Directly remux to AVI format">
<Parameter FileExt=".avi" Format="avi" ExporterName="FFExporter" AVInclude="0" AVNeed="0" AVStyle="1">
<AudioParam AudioCodecName="original" AudioBitrate="0" Samplerate="0" Channel="0" />
<VideoParam VideoCodecName="original" Width="0" Height="0" FrameRate="0.000000" VideoBitrate="0" Tolerance="0" />
<ParameterEx remux="1" />
</Parameter>
<ColItem>
<AudioCodecName DefID="0" DefValue="copy" />
...
<VideoCodecName DefID="0" DefValue="copy" />
helps 'a little'.
Now I get this error:
"-vcodec copy and VideoHook are incompatible (frames are not decoded)"