English 中文(简体)
如何获得网上文件解决
原标题:How to get webm files resolution

我试图做一个读到网上档案的剪辑。 我已经利用直接how在小组上处理档案。 然而,我无法找到如何从网页上获得解决,以便相应地改变我的形式。

最佳回答

rel=“nofollow”职称=“ffprobe”>ffprobe 是一间Clibrarys视频和音频文档的图书馆。 我已利用该网站复制文档。 查阅<代码>-show_format备选办法。

问题回答

SpawnDev.EBML is a pure C# EBML library I am working on. WebM uses the EBML file format. Resolution is stored in the WebM under Segment > Tracks > TrackEntry > Video > PixelWidth and PixelHeight. The project has a win forms app, EBMLViewer, that demos the library.

GitHub: SpawnDev.EBML
Nuget: SpawnDev.EBML

我的图书馆有WebMDocumentReader:

var fileStream = new FileStream(sourceFile, FileMode.Open, FileAccess.Read, FileShare.Read);
var webm = new WebMDocumentReader(fileStream);
var width = webm.VideoPixelWidth;
var height = webm.VideoPixelHeight; 

“NuGet





相关问题
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. ...

热门标签