Impossible de charger ou d'assemblée, ou un de ses dépendances

Je suis en utilisant Aforge.net cadre de travail pour faire le traitement de l'image de travail.
J'ai ajouter "AForge.Video.FFMPEG.dll" comme une referance pour mon projet.
Je suis avec VS2012 et 32 bits cible.
Lors de l'Immeuble-je obtenir

 System.IO.FileNotFoundException was unhandled
  HResult=-2147024770
  Message=Could not load file or assembly 'AForge.Video.FFMPEG.dll' or one of its dependencies. The specified module could not be found.
  Source=VideoReadere
  FileName=AForge.Video.FFMPEG.dll
  FusionLog=""
  StackTrace:
       at VideoReadere.Form1..ctor()
       at VideoReadere.Program.Main() in c:\Users\Prabad\Documents\Visual Studio 2012\Projects\VideoReadere\VideoReadere\Program.cs:line 19
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
  InnerException: 

mon code pour que se produisent exception

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace VideoReadere
{
    static class Program
    {
        ///<summary>
        ///The main entry point for the application.
        ///</summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
//here below line give exception
            Application.Run(new Form1());
        }
    }
}
Le AForge.Video.FFMPEG.dll existe pas dans le chemin de l'exécutable?
Voyez-vous un triangle jaune à côté de AForge.Video.FFMPEG.dll sous References dossier de VS?
Si vous avez ajouté la référence correctement alors je ferais attention à cette partie du message d'erreur "ou une de ses dépendances". Avez-vous également fait référence à tous les fichiers Dll AForge.Video.FFMPEG.dll dépend.
Comment je trouve les dépendances de AForge.Video.FFMPEG.dll
L'utilisation de Dépendance Walker de trouver vos dépendances. Vous pouvez télécharger à partir de dependencywalker.com

OriginalL'auteur Prathibha Chiranthana | 2014-08-27