Skip to content
Snippets Groups Projects
Commit aea9f05b authored by Simpel's avatar Simpel
Browse files

fix: provide vcruntime140_1.dll


Some windows (win7?) lacking vcruntime140_1.dll what bmxtranswrap is
needing. It can't be checked if dll can be found at c:\windows\system32.
So provide it anyway in %temp%.

Signed-off-by: default avatarConrad Zelck <git@simpel.cc>
parent 71c759a0
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#AutoIt3Wrapper_UseX64=n #AutoIt3Wrapper_UseX64=n
#AutoIt3Wrapper_Res_Comment=Swaps audio tracks in mxf files. #AutoIt3Wrapper_Res_Comment=Swaps audio tracks in mxf files.
#AutoIt3Wrapper_Res_Description=Swaps audio tracks in mxf files. #AutoIt3Wrapper_Res_Description=Swaps audio tracks in mxf files.
#AutoIt3Wrapper_Res_Fileversion=1.0.0.8 #AutoIt3Wrapper_Res_Fileversion=1.0.0.10
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=p #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=p
#AutoIt3Wrapper_Res_LegalCopyright=Conrad Zelck #AutoIt3Wrapper_Res_LegalCopyright=Conrad Zelck
#AutoIt3Wrapper_Res_SaveSource=y #AutoIt3Wrapper_Res_SaveSource=y
...@@ -622,6 +622,9 @@ EndIf ...@@ -622,6 +622,9 @@ EndIf
If Not FileExists(@TempDir & "\bmxtranswrap.exe") Then If Not FileExists(@TempDir & "\bmxtranswrap.exe") Then
FileInstall('K:\bmxtranswrap\bmxtranswrap.exe', @TempDir & "\bmxtranswrap.exe", $FC_OVERWRITE) FileInstall('K:\bmxtranswrap\bmxtranswrap.exe', @TempDir & "\bmxtranswrap.exe", $FC_OVERWRITE)
EndIf EndIf
If Not FileExists(@TempDir & "\vcruntime140_1.dll") Then ; this is needed by bmxtranswrap and normally located at "C:\Windows\System32\vcruntime140_1.dll"
FileInstall('K:\bmxtranswrap\vcruntime140_1.dll', @TempDir & "\vcruntime140_1.dll", $FC_OVERWRITE)
EndIf
SplashOff() SplashOff()
Local $sPathTempFolder = @TempDir & "\" Local $sPathTempFolder = @TempDir & "\"
......
...@@ -4,10 +4,11 @@ Provide a mxf (tested only with xdcam hd 422 op1a including 8 audio tracks) and ...@@ -4,10 +4,11 @@ Provide a mxf (tested only with xdcam hd 422 op1a including 8 audio tracks) and
## Prerequisites ## Prerequisites
To build your swapper yourself you need a compiled ffmpeg and bmxtranswrap that must be embedded into your swapper. Customize the following code lines: To build your swapper yourself you need a compiled ffmpeg and bmxtranswrap that must be embedded into your swapper. You eventually need the vcruntime140_1.dll too if not provided by your windows at `C:\Windows\System32`. Customize the following code lines:
`FileInstall('K:\ffmpeg\bin\ffmpeg.exe', @TempDir & "\ffmpeg.exe", $FC_OVERWRITE)` `FileInstall('K:\ffmpeg\bin\ffmpeg.exe', @TempDir & "\ffmpeg.exe", $FC_OVERWRITE)`
`FileInstall('K:\bmxtranswrap\bmxtranswrap.exe', @TempDir & "\bmxtranswrap.exe", $FC_OVERWRITE)` `FileInstall('K:\bmxtranswrap\bmxtranswrap.exe', @TempDir & "\bmxtranswrap.exe", $FC_OVERWRITE)`
`FileInstall('K:\bmxtranswrap\vcruntime140_1.dll', @TempDir & "\vcruntime140_1.dll", $FC_OVERWRITE)`
## Manual ## Manual
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment