Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (90)

  • 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.

  • 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 (...)

Sur d’autres sites (7028)

  • Building FFMPEG 3.0 on windows

    12 avril 2016, par KevinA

    I’m trying to build FFMpeg 3.0.1 on windows. I’ve successfully build FFMpeg before.

    It successfully configures, and when I type Make i get

    Make: *** No rule to make target `libavdevice/avdevice.dll', needed by `all-yes`. Stop

    I’m building with the following config

    ./configure --prefix=c:\ffmpeg --toolchain=msvc --enable-w32threads =-=extra=ldflags=/MACHINE:X86 --anble-asm --enable-yasm --enable-shared --disable-static

    I’ve tried with both VS2013 and VS2015. Same result.

  • checkasm : Disable Windows Error Reporting

    7 février 2016, par Henrik Gramner
    checkasm : Disable Windows Error Reporting
    

    When developing new assembly code it’s expected that checkasm may crash,
    and the error reporting dialog popup can be somewhat annoying.

    • [DH] tools/checkasm.c
  • FFMPEG : STDOUT vs FILE in Windows

    25 mars 2014, par Martin Matilla

    I've got an application (app1.exe) that generates mpeg4 frames using ffmpeg libraries, and I want to dump these frames to another application reading from stdin.

    The easiest way to connect them is via a file, and this works, but now I want to use pipes.

    So in app1.exe I have

    fwrite(pkt.data, 1, pkt.size, (FILE*) f ); // for each frame

    which creates a test.m4v file, works OK, but when I change it to

    fwrite(pkt.data, 1, pkt.size, stdout ); // for each frame

    and then dump it to a file app1.exe > test.m4v the file is generated correctly, but the content is corrupted :

    Generated using FILE :

    generated using FILE

    Generated using STDOUT :

    generated using STDOUT

    My first thought was to check if the application generated any stdout other than the frames, but it doesn't, checked using the FILE version and dumping stdout via app1.exe>text.txt, but the file is empty. The only "outs" are stderrs, but they only occurr when the application exits.

    Opening the resulting test.m4v for both versions with notepad++ shows pretty similar data, I would even say the same in both.

    So my question is, what is the difference between writing to FILE and dumping stdout to file ?