Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (31)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (4460)

  • Anomalie #4261 : Vider l’opcache au recalcul et à l’upgrade

    22 novembre 2019, par jluc -

    L’opcache foire aussi les installations de plugins : cf https://www.mail-archive.com/spip-zone@rezo.net/msg49046.html

    Mise à jour du contournement proposé plus haut : il faut aussi vider le cache apcu.

    if (isset($_REQUEST[’var_mode’]) and ($_REQUEST[’var_mode’] == ’recalcul’))

    if (function_exists('spip_clear_varnish_cache'))<br />        spip_clear_varnish_cache();
    include_spip ('inc/invalideur');<br />    suivre_invalideur('recalcul');
    if (function_exists('opcache_reset'))<br />        opcache_reset();
    if (function_exists('apc_clear_cache')) {<br />        apc_clear_cache();<br />        apc_clear_cache('user'); <br />    }
    if (function_exists('apcu_clear_cache')) {<br />        apcu_clear_cache();<br />    }
    spip_log("recalcul a vidé varnish, SPIP, opcache et apc_cache");<br />}

    Mais le mieux serait de mettre ça dans une fonction appelée lors des différentes mise à jour le nécessitant (et pas seulement au recalcul via l’url)

  • fftools/ffmpeg_mux : replace monotonous with monotonic

    29 août 2023, par Leo Izen
    fftools/ffmpeg_mux : replace monotonous with monotonic
    

    The word "monotonous" means "spoken in a monotone" which is not what we
    mean here. We mean "monotonic" i.e. nondecreasing.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] fftools/ffmpeg_mux.c
  • checkasm : x86 : post commit review fixes

    22 décembre 2015, par Janne Grunau
    checkasm : x86 : post commit review fixes
    

    Check the full FPU tag word instead of only the lower half and simplify
    the comparison.
    Use upper-case function base name as macro name to instantiate both
    checked_call variants.

    • [DBH] tests/checkasm/x86/checkasm.asm