Re: [FFmpeg-devel] How to specify AV_OPT_TYPE_DICT type options on command line

2016-03-03 Thread Thilo Borgmann
> I'm trying to pass an option into a new filter of type AV_OPT_TYPE_DICT. Just found out it is not (yet) allowed in lavu/opt.c. Sticking with STRING argument for now initializing a local AVDictionary. Maybe this is of interest for someone else, too. -Thilo

[FFmpeg-devel] How to specify AV_OPT_TYPE_DICT type options on command line

2016-03-03 Thread Thilo Borgmann
Hi, I'm trying to pass an option into a new filter of type AV_OPT_TYPE_DICT. After compilation I wonder how to specify this dictionary via the command line... ffmpeg -i in.avi -vf filter=opt_of_type_dict=??? out.avi Grep reveals no other filter using the dict type for an input option. Anyone