English 中文(简体)
FFPlayLink in C#?
原标题:FFPlay interface in C#?

我最近找到了一条途径,通过FFMpeg转换器通过指挥线转换录像,但最近有人有兴趣让录像机发挥作用! 并且我听说,VLC的参与者和其他各种系统都使用FFPlay,而且我也知道这方面的任何情况! 因此,我有一些主要兴趣。

Questions:

  • What exactly does the ffplay.exe do?
  • If it allows me to stream videos, how would i create an interface to C# to use that
  • How would i display the video on a windows forms app.

如果无法做到这一点,则欢迎其他备选办法,或甚至可能撰写我自己的文件。 建议!

Edit:寻求可能的解决办法,框架要求为3个或3个以上,并且不给他们安装我的方案以外的任何东西。

最佳回答

我不是专家,而是根据我所知,

  1. You can perhaps look at DirectShow technology for developing your video player as there are managed lib such as directshow.net available for it.
  2. To my knowledge, FFPlay is GUI on top of FFmpeg libraries - the main part of FFmpeg is audio/video codec library supporting many formats including MPEG-4 implementation.
  3. To use FFmpeg via DirectShow, you need another component known as ffdshow.
问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签