Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (88)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (10385)

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