Hello:
For previous version of Flyleaf 3.1.14, I can write the following C# code to use config():
Config config = new();
config.demuxer.VideoFormatOpt.Add("probesize", (50 (long)1024 1024).ToString());
config.demuxer.VideoFormatOpt.Add("analyzeduration", (10 (long)1000 1000).ToString());
FLPlayer1 = new Player(config)
{
Control = flyleaf1
};
Since there is a new version of Flyleaf: version 3.2.4, my above code did NOT work.
Please advise, how I can use FlyleafLib.Config()?
Hello: For previous version of Flyleaf 3.1.14, I can write the following C# code to use config(): Config config = new(); config.demuxer.VideoFormatOpt.Add("probesize", (50 (long)1024 1024).ToString()); config.demuxer.VideoFormatOpt.Add("analyzeduration", (10 (long)1000 1000).ToString()); FLPlayer1 = new Player(config) { Control = flyleaf1 };
Since there is a new version of Flyleaf: version 3.2.4, my above code did NOT work. Please advise, how I can use FlyleafLib.Config()?