Looking through the source code, I get this;
less ffmbc.c|grep "(ost->target"
if (!strcmp(ost->target, "vcd") || !strcmp(ost->target, "svcd"))
if (!strcmp(ost->target, "vcd") || !strcmp(ost->target, "svcd") ||
!strcmp(ost->target, "dvd") || !strcmp(ost->target, "dvcpro50") ||
!strcmp(ost->target, "dvcpro") || !strcmp(ost->target, "dvcam") ||
!strncmp(ost->target, "imx", 3)) {
if (!strcmp(ost->target, "vcd")) {
} else if (!strcmp(ost->target, "svcd")) {
} else if (!strcmp(ost->target, "dvd") || !strcmp(ost->target, "dvcpro50") ||
!strcmp(ost->target, "dvcpro") || !strcmp(ost->target, "dvcam")) {
} else if (!strcmp(ost->target, "dvcprohd")) {
} else if (!strncmp(ost->target, "imx", 3)) {
} else if (!strcmp(ost->target, "xdcamhd422")) {
Phillip
On 24 Jul 2012, at 12:26, mattgo...@gmail.com wrote:
> I notice I can get a list of filters and formats by typing -filters and -formats.
> Is there a way to get a definitive list of targets as -target does not seem to work.
> Apologies if this comes through as a double-post, my initial post did not seem to show up.
> Many Thanks.