Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (65)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (4885)

  • Revision f090b6b47b : Restructure vp9_decode_mb_tokens_16x16() a bit. Don't declare variables if they

    23 novembre 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp9/decoder/detokenize.c Restructure vp9_decode_mb_tokens_16x16() a bit. Don't declare variables if they only ever have a single value and are used only as argument to another function call ; instead, just hardcode the value in the function call directly. Also remove (...)

  • Revision 9970d8b662 : Restructure vp9_decode_mb_tokens_8x8() a bit. Don't declare variables if they o

    23 novembre 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp9/decoder/detokenize.c Restructure vp9_decode_mb_tokens_8x8() a bit. Don't declare variables if they only ever have a single value and are used only as argument to another function call ; instead, just hardcode the value in the function call directly. Split out UV and (...)

  • Check for Executable in Windows Environment Variables

    26 juillet 2017, par Matt McManis

    I’m using Windows 10, Visual Studio 2015, C#, WPF.

    I want to check if the program ffmpeg.exe exists in Environment Variables.

    I have modified this code : https://stackoverflow.com/a/3856090/6806643

    It cycles through all Environment Variables Paths, checking for ffmpeg.exe in each.


    It works, but is this the most optimal way to do this ?

    Are there instances where this will not work if the user has FFmpeg set up a different way ?


    Environment Variables


    var envar = Environment.GetEnvironmentVariable("PATH"); // Just the Path, no Exe
    int found = 0;


    // Check All Environment Variables Paths for ffmpeg.exe
    //
    foreach (var envarPath in envar.Split(';'))
    {
       // Path + Exe
       var exePath = System.IO.Path.Combine(envarPath, "ffmpeg.exe");

       // Check
       if (File.Exists(exePath))
       {
           found = 1;
       }
    }


    // Display Message if FFmpeg exists
    //
    if (found == 1)
    {
       MessageBox.Show("FFmpeg exists.");
    }
    else if (found == 0)
    {
       MessageBox.Show("Cannot locate FFmpeg.");  
    }