Recherche avancée

Médias (91)

Autres articles (102)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (14944)

  • How is `ffplay` detecting that the sound file from pipe-connected ffmpeg has finished ?

    20 novembre 2017, par Izumi Kawashima

    The following code playes "sample.mp3", and terminates. This is so surprising because the data passed via pipe are binary streams, so ffplay should have no idea about the duration of "sample.mp3", but it terminates right after it reaches the end.

    $ cat sample.mp3 | ffmpeg -i pipe:0 -f mp3 pipe:1 | ffplay -autoexit -

    What binary signal is ffplay watching to detect the terminal of sample.mp3 ?

  • Generate script from Handbrake preset

    11 avril 2018, par cclloyd

    Is it possible to generate a script/command to run from a Handbrake preset or from the queue on OS X ?

    Like take the queue and generate a command I can run in terminal instead of through the GUI ? (Either with ffmpeg or with HandBrakeCLI)

  • I want to generate frames from a CCTV video using FFMPEG and save the frames as the time that they represent

    6 décembre 2014, par Jason Harris

    I am using mac os x terminal.

    So far I have mananaged the following code :

    ffmpeg -i cctvfootage.flv -f image2 -vf fps=fps=1 frames/frame_04d.png    

    The above code creates a frame for every second of the video, but names each frame as frame_0001.png, frame_0002.png, and so on. Although this is helpful, it is not the correct naming structure that I want.

    The date and time that the video footage starts from is 20th November 2014 at 13:46:12.

    The output name I want will be something like frames_20112014_134612.png (frames_DDMMYYYY_HHMMSS) for the first, frames_20112014_134613.png for the second, ect.

    This will then identify each frame as the day and time that the image is taken from.