简体   繁体   中英

Unable to load DLL 'LibFlac': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

HERE is the link to my project.

The error is on line 107: "context = FLAC__stream_encoder_new();" in file: FlacWriter.cs --> I didn't write that file. I got it from HERE

So I understand that libFLAC.dll is missing. So I tried all of the below approaches to solve the issue:

I downloaded libFLAC dll form rarewares.org/lossless.php#flac-dll-x64 I tried to add it as a reference, i get this ERROR: "A reference to C:\\CodeProjects\\WaveConverter\\WaveConverter\\Libraries\\libFLC_dynamic.dll' could not be added. Please make sure that the file is accessible, and that it is valid assembly or COM component."

I tried something else: I added the dll file to bin/Debug, reopened my project. ran the project again. same error on line: " context = FLAC__stream_encoder_new();" ERROR:"Unable to load DLL 'LibFlac': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"

I also tried 'importing' DLL in my code like this: I tried to add this line: "[DllImport("libFLAC.dll")]" under line 14 in my project file: Worker.cs I get this ERROR: "Duplicate 'DLLimport' attribute'

I also downloaded dependency-walker from dependencywalker.com Not sure how to operate it, but when it finished downloading, I clicked on OPEN icon and opened the libFLAC_dynamic.dll file I was trying to add to the project. And there were no errors. I'm not sure how to use this dependencyWalker though...

What else can I try? How do I fix this error?

You are p/invoking an unmanaged library names LibFlac.dll . You need that library and its dependencies to be in the DLL search path when you first call a function from the library. Typically that means doing the following:

  1. Placing LibFlac.dll in the same directory as your executable file, and
  2. Installing all dependencies that LibFlac.dll has. Typically this will be an MSVC C++ runtime. Read the documentation carefully to work out what dependencies the DLL has.

This is an unmanaged DLL. Don't attempt to add it as a reference. It also seems that the DLL you have is named libFLC_dynamic.dll which differs from the name that your code is expecting. Have you got the right DLL?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

Related Question DllNotFoundException: Unable to load DLL 'nativrd2.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) DLLnotfoundexception:Unable to load DLL 'Pine.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) Unable to load DLL 'Microsoft.WITDataStore32.dll':The specified module could not be found.(Exception from HRESULT:0x8007007E) '' Unable to load DLL 'mfplat.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)" Debugging Unable to load DLL 'MyDll.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) System.DllNotFoundException: 'Unable to load DLL 'libwkhtmltox': The specified module could not be found. (Exception from HRESULT: 0x8007007E)' Unable to load DLL 'System.Data.SQLite.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) for some customers DbGeography.FromText - Unable to load DLL 'SqlServerSpatial140.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) C# error: Unable to load DLL 'AutoItX3.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) System.DllNotFoundException: Unable to load DLL 'MvxSock.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM