Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (101)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13118)

  • The same FFmpeg commands run fast on the command line and slow in Flutter, how to Debug ?

    3 septembre 2024, par QIAOMO

    It's a simple task to watermark an image :

    


    ffmpeg -hide_banner -y -i image.AVIF -i watermark.png -filter_complex "overlay=(main_w-overlay_w-50):(main_h-overlay_h-50)" output.AVIF


    


    It takes almost seconds on the command line, but half a minute in Flutter.

    


    await Process.run('ffmpeg', [
    '-hide_banner',
    '-y',
    '-i',
    'image.AVIF',
    '-i',
    'watermark.png',
    '-filter_complex',
    'overlay=(main_w-overlay_w-50):(main_h-overlay_h-50)',
    'output.AVIF',
]);



    


    I am developing a macOS App using Flutter, please help !

    


  • arm : vp9itxfm : Reorder iadst16 coeffs

    31 décembre 2016, par Martin Storsjö
    arm : vp9itxfm : Reorder iadst16 coeffs
    

    This matches the order they are in the 16 bpp version.

    There they are in this order, to make sure we access them in the
    same order they are declared, easing loading only half of the
    coefficients at a time.

    This makes the 8 bpp version match the 16 bpp version better.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/arm/vp9itxfm_neon.S
  • avcodec/mips : Improve hevc uni weighted vert mc msa functions

    11 octobre 2017, par Kaustubh Raste
    avcodec/mips : Improve hevc uni weighted vert mc msa functions
    

    Pack the data to half word before clipping.
    Use immediate unsigned saturation for clip to max saving one vector register.

    Signed-off-by : Kaustubh Raste <kaustubh.raste@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/hevc_mc_uniw_msa.c