X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_producer.c;h=4963baa22ae9e584c99d85bf8079f7c278ae27c2;hb=390e1559353efa011b371b66fcd2c8d3ffb84ab8;hp=d6c27e3c146b7bdd16b0f3b106ebf926ea086944;hpb=8fe450eddce6d6e81cf063af5b471b7ef750efe9;p=melted diff --git a/src/framework/mlt_producer.c b/src/framework/mlt_producer.c index d6c27e3..4963baa 100644 --- a/src/framework/mlt_producer.c +++ b/src/framework/mlt_producer.c @@ -89,11 +89,15 @@ int mlt_producer_init( mlt_producer this, void *child ) if ( normalisation == NULL || strcmp( normalisation, "NTSC" ) ) { mlt_properties_set_double( properties, "fps", 25.0 ); + mlt_properties_set_int( properties, "frame_rate_den", 25 ); + mlt_properties_set_int( properties, "frame_rate_num", 1 ); mlt_properties_set_double( properties, "aspect_ratio", 59.0 / 54.0 ); } else { mlt_properties_set_double( properties, "fps", 30000.0 / 1001.0 ); + mlt_properties_set_int( properties, "frame_rate_den", 30000 ); + mlt_properties_set_int( properties, "frame_rate_num", 1001 ); mlt_properties_set_double( properties, "aspect_ratio", 10.0 / 11.0 ); } mlt_properties_set_double( properties, "_speed", 1.0 );