Home | History | Annotate | Download | only in frame_editing

Lines Matching defs:interval

25     " --in_path=input.yuv --width=320 --height=240 --f=60 --interval=1 --l=120"
37 "--interval(int): Interval specifies with what ratio the number of frames "
39 "If you set <interval> to a positive number, frames between <f> and <l> "
40 "will be inserted <interval> times."
41 " If you set <interval> to a negative number then the amount of frames "
42 "between <f> and <l> will be decreased with a ratio of abs(interval)."
43 " Set interval=-1 if every frame between <f> and <l> should be "
44 "deleted. Set interval=-2 if every second frame should be deleted, and so "
46 " number n where (n - 1) % interval == 0 will be kept.\n"
49 "interval=2, then you will get a clip that contains frame "
52 "If you specify f=4, l=7 and interval=-1, then you will get a clip that"
56 " interval=-4, then you will get a clip that contains frame "
72 parser.SetFlag("interval", "-1");
87 int interval = strtol((parser.GetFlag("interval")).c_str(), NULL, 10);
107 interval, last_frame_to_cut, out_path);