examples/encode_video: set the framerate

pull/258/head
Anton Khirnov 8 years ago
parent e02524025b
commit d0a603a534
  1. 4
      doc/examples/encode_video.c

@ -69,7 +69,9 @@ int main(int argc, char **argv)
c->width = 352;
c->height = 288;
/* frames per second */
c->time_base= (AVRational){1,25};
c->time_base = (AVRational){1, 25};
c->framerate = (AVRational){25, 1};
c->gop_size = 10; /* emit one intra frame every ten frames */
c->max_b_frames=1;
c->pix_fmt = AV_PIX_FMT_YUV420P;

Loading…
Cancel
Save