Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (71)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10957)

  • Could not load or assembly or one of its dependencies

    29 juin 2017, par Prathibha Chiranthana

    I am using Aforge.net frame work for doing image processing work.
    I have add ’AForge.Video.FFMPEG.dll’ as a referance to my project.
    I am using VS2012 and 32 bit build target.
    When Buiding i get

    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:

    my code for that is occur 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());
           }
       }
    }
  • Could not load or assembly or one of its dependencies

    24 mars 2017, par Prathibha Chiranthana

    I am using Aforge.net frame work for doing image processing work.
    I have add ’AForge.Video.FFMPEG.dll’ as a referance to my project.
    I am using VS2012 and 32 bit build target.
    When Buiding i get

    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:

    my code for that is occur 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());
           }
       }
    }
  • The While loop present in PowerShell code blocking the PowerShell GUI from being responsive

    2 avril 2024, par Baswaraj
    Add-Type -AssemblyName System.Windows.Forms&#xA; &#xA;$ffmpegPath = "C:\ffmpeg\bin\ffmpeg.exe"&#xA;$outputFilePrefix = "output"&#xA;$recordDuration = 10  &#xA;$global:ffmpegProcess = $null&#xA;$global:recordingInProgress = $false&#xA;&#xA;function Start-Recording {&#xA;    $global:recordingInProgress = $true&#xA;    $recordIndex = 1&#xA;    while ($global:recordingInProgress) {&#xA;        $outputFile = "$outputFilePrefix$recordIndex.mp4"&#xA;        $processStartInfo = New-Object System.Diagnostics.ProcessStartInfo&#xA;        $processStartInfo.FileName = $ffmpegPath&#xA;        $processStartInfo.Arguments = "-f gdigrab -framerate 30 -i desktop -c:v mpeg4 -q:v 2 -r 30 -t                                                                                             $recordDuration -y $outputFile" &#xA;        $processStartInfo.UseShellExecute = $false&#xA;        $processStartInfo.RedirectStandardOutput = $true&#xA;        $processStartInfo.CreateNoWindow = $false&#xA;        $global:ffmpegProcess = New-Object System.Diagnostics.Process&#xA;        $global:ffmpegProcess.StartInfo = $processStartInfo&#xA;&#xA;        try {&#xA;            $global:ffmpegProcess.Start() | Out-Null&#xA;             $global:ffmpegProcess.WaitForExit(($recordDuration &#x2B; 1) * 1000)   &#xA;             if (-not $global:ffmpegProcess.HasExited) {&#xA;                $global:ffmpegProcess.Kill() &#xA;            }&#xA;        $recordIndex&#x2B;&#x2B;&#xA;        } catch [System.Management.Automation.MethodInvocationException] {&#xA;         } catch {&#xA;            Write-Host "Unexpected error: $_"&#xA;        }&#xA;    }&#xA;}&#xA;# Define function to stop recording&#xA;function Stop-Recording {&#xA;    $global:recordingInProgress = $false&#xA;}&#xA;&#xA;

    &#xA;

    I am using ffmpeg tool to work on a screen recording project. When clicked on Start-Recording button, it should continue to record the screen and should produce 10 seconds video clips till the Stop-Button is clicked. For the above code, the process of generating video clips happening but during the process the GUI is being unresponsive to stop the whole process from the GUI.The while loop is going infinite but I am unable to figure out how to stop it by clicking the Stop-Button.

    &#xA;

    Any other ways or tools suggestion to work on also welcome...

    &#xA;