Recherche avancée

Médias (91)

Autres articles (25)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • avcodec/h264 : call flush_change() on init

    10 octobre 2013, par Michael Niedermayer
    avcodec/h264 : call flush_change() on init
    

    This ensures that all the non zero fields get setup correctly.
    Alternatively their initialization could be duplicated.

    Fixes Ticket2738

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.c
  • How to call ffmpeg with Java - umlauts ?

    15 juillet 2014, par Mese

    I am using the Java ProcessBuilder to call FFmpeg to capture a single window on my screen on Windows 7 using this command :

    ProcessBuilder pb = new ProcessBuilder(
     "path\\ffmpeg",
     "-f", "gdigrab",
     "-i", "title=" + "title of window",
     "path\\out.mp4"
    );

    With most windows this works fine and I don’t have any problems. But when I try to capture a window with an umlaut (like ÄÖÜ) in its title, I get an error that FFmpeg could not find that window. The same happens when starting FFmpeg using the Windows console.

    Does FFmpeg have a problem using umlauts and is there a way to capture windows with umlauts ?

    Thanks !

  • Multiple call to ffmpeg main fails in Android

    27 mars 2016, par fatih orhan

    I have ported ffmpeg library to Android. Using JNI interface, I am able to run ffmpeg commands by giving arguments to ffmpeg’s main method, just like from command line.

    In order to get a specific part of a video, I use this command :

    ffmpeg -i /mnt/sdcard/input_video.mp4 -ss 00:00:12 -t 00:00:10 -an /mnt/sdcard/output_video.mp4

    and it works great. The video is split from 12. seconds to 22. seconds and the video is saved, the method returns normally (as 0).

    However, if I make a second similar call (different start time for example) just after the first one is completed, ffmpeg is not able to process the request and it throws a segmentation fault.

    For the first call, it gives such an info :

    Guessed Channel Layout for Input Stream #0.0 : mono

    and works. But for the second, the message is like this one :

    Guessed Channel Layout for Input Stream #1.0 : mono

    and it doesn’t work. I don’t know if it has something to do with the error.

    The problem, in general, should be related to static global variables (I think) but I could not manage to reset them properly. What might be the solution to make multiple successful calls to the main method of ffmpeg ?