Who developed the "avformat-59.dll" that comes with FFmpeg?

Asked 1 years ago, Updated 1 years ago, 520 views

Who developed the "avformat-59.dll" that comes with FFmpeg?
"Do you mean "".dll included with FFmpeg"" = ""DLL developed by FFmpeg""?"
What is a DLL?

On Windows operating systems, DLLs provide many of the operating system features.

As it was explained, I thought DLL was developed by some technical organization and distributed and managed the common format...(I thought FFmpeg was using it)

dll

2023-03-09 18:10

1 Answers

First of all, you should know what DLL=shared libraries are.
DLLs are for Windows with extension *.dll but lib*.so on Linux.

What is a shared library?-Weblio

A shared library is a collection of components of a highly versatile program commonly used by a plurality of programs.For UNIX operating systems, it is provided as a file with the .so. extension and for Windows, as a file with the .DLL extension.

Also, the stories around the shared library on Linux should have answered some of Re9's questions in the past.

avformat-XX.dll is libavformat.so.XX on Linux, but the FFmpeg page on Wikipedia contains:

Includes libavcodec (video/audio codec library), libavformat (video/audio container library), libswscale (color space/size conversion library), libavfilter (video filtering library).

Also, since FFmpeg's official documentation page also has a page about Libavformat, avformat-59.dll may be considered a FFmpeg project deliverable.


2023-03-09 19:05

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.