trying to use
err := fluentffmpeg.
NewCommand("").
InputPath("http://").
OutputOptions("-movflags", "isml+frag_keyframe+empty_moov").
OutputFormat("mp4").
VideoCodec("h264").
KeyframeInterval(52).
Resolution("640x360").
PipeOutput(w).
Run()
all is ok besides the output resolution. It is always the same as the original (FullHD for example) and the Resolution option doesn't work.
Any ideas on how to fix it?