Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (67)

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

  • 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

Sur d’autres sites (10246)

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

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