Recherche avancée

Médias (91)

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10817)

  • pulse : fix application name

    22 octobre 2011, par Michael Niedermayer

    pulse : fix application name

  • FFmpeg Two Pass encode with other application

    19 décembre 2014, par Gabee8

    How to encode x264 video with two pass in Pass 1 : ffmpeg and Pass 2 : H.264 (MPEG-4 AVC) encoder ? Videolan.org
    Example : FFMPEG 2Pass

    ffmpeg -y -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 1 -an -f avi /dev/null
    ffmpeg -i input.avi -c:v mpeg4 -vtag xvid -b:v 555k -pass 2 -c:a libmp3lame -b:a 128k output.avi

    My idea not start pass 2 with ffpmeg application but start videolan application.
    Thanks !

  • strncpy_s error when deploying ffmpeg streaming application on XP

    26 juillet 2013, par dagur

    I'm trying to deploy an application that uses ffmpeg to stream camera output to an XP machine. The application is written compiled with gcc mingw32 and runs fine on Windows 8. But on Windows XP I get the following error :

    The procedure entry point strncpy_s could not be located in the
    dynamic link library msvcrt.dll

    GCC command, excluding paths :

    g++ -o mingw\streamer.exe src\testffmpeg.o -lavformat -lavutil -lavcodec -lFlyCapture2_C_v100

    Dependency walker shows the following :
    Depedency Walker

    How can I work around this strncpy_s problem ? It seems to be ffmpeg which uses this function is msvcrt. I used the windows binaries they provided. I'd rather not have to compile the library myself, as it has a huge set of dependencies.