Recherche avancée

Médias (91)

Autres articles (87)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (12162)

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