Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • checkasm : Fix compilation on Windows with —disable-thread

    17 septembre 2016, par Henrik Gramner
    checkasm : Fix compilation on Windows with —disable-thread
    
    • [DH] tools/checkasm.c
  • Extract frames from .DAV file for convert to .MP4 or .AVI on Mac or Linux (or Windows virtual box)

    24 août 2016, par benwiz

    I have a .dav file from a cctv camera. My goal is to extract every frame into a jpg. It seems likely that I’ll need to convert it into mp4/avi before extracting frames using ffmpeg/avconv.

    I can’t figure out any method to convert the .dav file on unix or windows (found a software that claimed to convert the file to .avi but it would not run in the Windows virtual machine or on my Mac)

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