Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (66)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8289)

  • Revision 597ce31ff8 : Fix visual studio build failure Cast frame_size to be int for now to fix build

    18 juillet 2014, par Yunqing Wang

    Changed Paths :
     Modify /vpx_scale/generic/yv12config.c



    Fix visual studio build failure

    Cast frame_size to be int for now to fix build warnings.

    Change-Id : I411ba2b1fd429a383c8f6e832b4fa4147914c824

  • Linker error using FFMPEG with Visual Studio 2013 Express

    19 décembre 2013, par Andres

    I am trying to write a program using FFMPEG libraries. I read about in this link. I downloaded Shared and Devs files from http://ffmpeg.zeranoe.com/builds/.

    I created a console project and this is the configuration :

    Additional Libraries Directories
    enter image description here

    Additional Include Directories
    enter image description here

    And here is my code :

    #include "stdafx.h"
    #pragma comment (lib, "avformat.lib")
    #pragma comment (lib, "avcodec.lib")
    #pragma comment (lib, "avutil.lib")

    extern "C"
    {
       #ifndef __STDC_CONSTANT_MACROS
       #define __STDC_CONSTANT_MACROS
       #endif
       #include
       #include
       #include
       #include
    }
    int _tmain(int argc, _TCHAR* argv[])
    {
       av_register_all();
       return 0;
    }

    And the error I am getting is this :

    Error 1 error LNK2019 : unresolved external symbol _av_register_all
    referenced in function _wmain C :\Users\Andres\Documents\Visual Studio
    2013\Projects\PruebaFFMPEG\PruebaFFMPEG\PruebaFFMPEG.obj PruebaFFMPEG

    Error 2 error LNK1120 : 1 unresolved
    externals C :\Users\Andres\Documents\Visual Studio
    2013\Projects\PruebaFFMPEG\Debug\PruebaFFMPEG.exe PruebaFFMPEG

    What am I missing ?

  • FFmpeg making video from images placed in different folders

    20 août 2013, par Ali faizan

    I am making video from images in FFmpeg. I want to know if I can make video from images placed in different folders. Like first image is placed in folder1 and other in folder2 can I use both images in folder1 and folder2 to make a single video having both images in any order. Just want to know can I use images from two different folders to make a single video. if yes. Than how can i do that ?