问题描述
我正在使用WinForms。我想在progressBar中显示视频转换的进度,我目前正在使用NReco.VideoConverter,我也尝试了FFLib.Encoder,它有一个名为Progress的EventHandler,但我无法使用它progressBar。
我试过 progressBar1.Value + = converter.Progress;
,也尝试使用 %Handler它失败了。
希望有人可以帮助我。此外,如果有人知道更好的视频转换库,请告诉我。
提前提醒
I'm using WinForms. I want to show the progress of a video conversion in a progressBar ,I'm currently using the NReco.VideoConverter, I've tried FFLib.Encoder too, it has an EventHandler named Progress, but I can't make it work with the progressBar.
I've tried progressBar1.Value += converter.Progress;
, also tried using a "percentHandler" and it failed.
Hope someone can help me. Also, if someone knows about a better video conversion library, please let me know.
Thnaks in advance
推荐答案
这篇关于使用c#显示视频转换的进度(请参阅详细信息)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!