MVC4 App "Unable to load DLL 'libmp3lame.32.dll'

后端 未结 4 990
星月不相逢
星月不相逢 2020-12-11 04:57

I am trying to use the NAudio.Lame library in an MVC4 application and am getting the error:

Unable to load DLL \'libmp3lame.32.dll\': The specified module co         


        
相关标签:
4条回答
  • 2020-12-11 05:26

    I made it work by having the LameDLLWrap assembly as a separate one, rather than embedding it in the main assembly. Since I know that my target system is 32 bit, I can afford having a single assembly -- this is simpler for me than playing with PATH on the hoster's machine.

    Here's what I did:

    1. Cloned the source
    2. Checkout the Experimental branch
    3. Removed the embedded assemblies from the main project
    4. Set the reference to the wrapper to Copy Local
    5. Recompiled everything
    0 讨论(0)
  • 2020-12-11 05:27

    Most probably IIS just can't find native dlls. Be sure to place native dll files into one of Windows DLL search path locations.

    0 讨论(0)
  • 2020-12-11 05:35

    The problem turns out to be that the native DLLs (libmp3lame.32.dll and libmp3lame.64.dll) cannot be found because the current directory that the web server process is executing from is not the website's bin folder (where the DLLs reside) and the search path does not include the bin folder.

    What you need is to add the bin folder to the PATH environment variable, which will enable the LoadLibrary API call to locate the DLLs.

    Here's a method you can call that will do this for you:

    public static void CheckAddBinPath()
    {
        // find path to 'bin' folder
        var binPath = Path.Combine(new string[] { AppDomain.CurrentDomain.BaseDirectory, "bin" });
        // get current search path from environment
        var path = Environment.GetEnvironmentVariable("PATH") ?? "";
    
        // add 'bin' folder to search path if not already present
        if (!path.Split(Path.PathSeparator).Contains(binPath, StringComparer.CurrentCultureIgnoreCase))
        {
            path = string.Join(Path.PathSeparator.ToString(), new string[] { path, binPath });
            Environment.SetEnvironmentVariable("PATH", path);
        }
    }
    

    Place that in your controller and call it right before you create the LameMP3FileWriter instance. It might work if you put it in Global.asax.cs and call it from Application_Start(). Try it and let me know if it works there.

    I've put a Wiki article about this on the project site here.

    0 讨论(0)
  • 2020-12-11 05:47

    Add the following line to the web.config for your site. This will prevent IIS from copying files and executing your site from a temporary folder (native dlls do not get copied apparently). The downside is that you will have to restart the application pool every time you push changes to your bin folder because IIS will lock the files there.

    <system.web>
        <hostingEnvironment shadowCopyBinAssemblies="false" />
        ...
    </system.web>
    
    0 讨论(0)
提交回复
热议问题