-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ffmpeg post-build step to write version info to unversioned dlls
- Loading branch information
1 parent
55836ee
commit 6c61245
Showing
2 changed files
with
67 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"files": [ | ||
{ | ||
"filename": "bin/avcodec-60.dll", | ||
"fileDescription": "FFmpeg codec library", | ||
"fileVersion": "60.3.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
}, | ||
{ | ||
"filename": "bin/avdevice-60.dll", | ||
"fileDescription": "FFmpeg device handling library", | ||
"fileVersion": "60.1.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
}, | ||
{ | ||
"filename": "bin/avfilter-9.dll", | ||
"fileDescription": "FFmpeg audio/video filtering library", | ||
"fileVersion": "9.3.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
}, | ||
{ | ||
"filename": "bin/avformat-60.dll", | ||
"fileDescription": "FFmpeg container format library", | ||
"fileVersion": "60.3.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
}, | ||
{ | ||
"filename": "bin/avutil-58.dll", | ||
"fileDescription": "FFmpeg utility library", | ||
"fileVersion": "58.2.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
}, | ||
{ | ||
"filename": "bin/swresample-4.dll", | ||
"fileDescription": "FFmpeg audio resampling library", | ||
"fileVersion": "4.10.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
}, | ||
{ | ||
"filename": "bin/swscale-7.dll", | ||
"fileDescription": "FFmpeg image rescaling library", | ||
"fileVersion": "7.1.100", | ||
"productName": "FFmpeg", | ||
"productVersion": "6.0", | ||
"copyright": "Copyright (C) 2000-2023 FFmpeg Project" | ||
} | ||
] | ||
} |