Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (61)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6967)

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