Recherche avancée

Médias (91)

Autres articles (60)

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

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

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

  • avutil/hwcontext_d3d11va : fix type arguments passed to IDXGIAdapter2_GetDesc()

    24 juillet 2018, par James Almer
    avutil/hwcontext_d3d11va : fix type arguments passed to IDXGIAdapter2_GetDesc()
    

    libavutil/hwcontext_d3d11va.c : In function 'd3d11va_device_create' :
    libavutil/hwcontext_d3d11va.c:554:46 : warning : passing argument 2 of 'pAdapter->lpVtbl->GetDesc' from incompatible pointer type [-Wincompatible-pointer-types]
    hr = IDXGIAdapter2_GetDesc(pAdapter, &desc) ;
    ^
    libavutil/hwcontext_d3d11va.c:554:46 : note : expected 'DXGI_ADAPTER_DESC * aka struct DXGI_ADAPTER_DESC *' but argument is of type 'DXGI_ADAPTER_DESC2 * aka struct DXGI_ADAPTER_DESC2 *'

    Reviewed-by : Jean-Baptiste Kempf <jb@videolan.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/hwcontext_d3d11va.c
  • Reject multiple headers of the same type.

    7 janvier 2015, par Tim Terriberry
    Reject multiple headers of the same type.
    

    A common application pattern is to call vorbis_synthesis_headerin()
    and count how many times it succeeds.
    If you feed it multiple valid comment headers, they will all
    succeed, meaning you can be fooled into think you have a valid
    Vorbis file despite never seeing a setup header.
    This patch makes libvorbis reject multiple headers of the same type,
    preventing this from occurring.

    git-svn-id : http://svn.xiph.org/trunk/vorbis@19426 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/info.c
  • Pattern type glob order in ffmpeg.js ?

    14 septembre 2021, par sb32134

    I am trying to understand the order of frames generated (to finally make a video ) by ffpmeg when using the pattern type glob. I can't see the actual files as its all in memory and not on disk.

    &#xA;

        ffmpegArguments.push("-framerate", (1.0/frameTime).toFixed(0), "-pattern_type", "glob", "-i", "*.jpg", "-c:v");&#xA;

    &#xA;

    Is there a way to add some debug flag to see each of the file generated during the above ffmpeg.js encoding ? I want to know the final video is encoded using the correct order of each .jpg file.

    &#xA;

    enter image description here

    &#xA;

    Above screenshot does show how to use ffmpeg with pattern type glob but it does not mention order of the files foo-*.jpeg that gets consumed to create foo.avi.

    &#xA;