Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (57)

  • 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

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11330)

  • libx264 runtime check failure #2

    4 mars 2014, par PeeVee75

    I have built libx264.dll as explained in http://doom10.org/index.php?topic=1876.0

    However, when I try to run a simple test by just initializing an x264_param_t variable to the default values, and exiting the program, I get a runtime check failure #2 error.

    I’m on a Win7 machine with VS2005. Below is the code I’m trying to run. Is there something I need to clean in x264_param_t before exiting ?

    extern "C" {
     #include "stdint.h"
     #include "x264.h"
    }

    void InitX264Params(x264_param_t *outX264Param)
    {
     x264_param_default(outX264Param);
    }

    int main(int argc,const char **argv)
    {
     x264_param_t x264Param;
     InitX264Params(&x264Param);
     return 0;
    }
  • libx264 runtime check failure #2

    4 mars 2014, par PeeVee75

    I have built libx264.dll as explained in http://doom10.org/index.php?topic=1876.0

    However, when I try to run a simple test by just initializing an x264_param_t variable to the default values, and exiting the program, I get a runtime check failure #2 error.

    I’m on a Win7 machine with VS2005. Below is the code I’m trying to run. Is there something I need to clean in x264_param_t before exiting ?

    extern "C" {
     #include "stdint.h"
     #include "x264.h"
    }

    void InitX264Params(x264_param_t *outX264Param)
    {
     x264_param_default(outX264Param);
    }

    int main(int argc,const char **argv)
    {
     x264_param_t x264Param;
     InitX264Params(&x264Param);
     return 0;
    }
  • FFServer does not stop

    18 mai 2014, par user3235818

    I am trying to stream video from my webcam to a website that I created, using FFMpeg and FFServer on my Ubuntu 12.04 machine. I can successfully start FFServer with an ffserver1.conf file I’ve made, but when I stop FFServer (with crtl+c) to make changes to my config file, and try to start FFServer again, I get an error : Could not start server. Then I try to start the server with the default ffserver.conf (in /etc), I get an error : bind(port 8090) : Address already in use. Sometimes I also get Deleting feed file "/tmp/feed1.ffm’ as stream counts differ (4 != 1).

    It seems to me that the server is not completely stopping when I kill it in the terminal with ctrl+c. Is there another way to stop FFServer ? Or should I just get a different version - I’m currently using version 0.10.11-7:0.10.11-1 precisce1.

    Thank you