Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (66)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (10132)

  • arm/fft : disable NEON optimizations for 131072pt transforms

    29 août 2022, par Lynne
    arm/fft : disable NEON optimizations for 131072pt transforms
    

    This has been broken since the start, and it was only discovered
    when I started testing my replacement for the FFT.
    Disable it, since there's no point in fixing slower code that's about
    to be removed anyway.

    The vfp version is not affected.

    • [DH] libavcodec/aarch64/fft_init_aarch64.c
    • [DH] libavcodec/arm/fft_init_arm.c
  • avcodec/vp8, vp9 : Avoid using VP56mv and VP56Frame in VP8/9

    23 juillet 2022, par Andreas Rheinhardt
    avcodec/vp8, vp9 : Avoid using VP56mv and VP56Frame in VP8/9
    

    Instead replace VP56mv by new and identical structures VP8mv and VP9mv.
    Also replace VP56Frame by VP8FrameType in vp8.h and use that
    in VP8 code. Also remove VP56_FRAME_GOLDEN2, as this has only
    been used by VP8, and use VP8_FRAME_ALTREF as replacement for
    its usage in VP8 as this is more in line with VP8 verbiage.

    This allows to remove all inclusions of vp56.h from everything
    that is not VP5/6. This also removes implicit inclusions
    of hpeldsp.h, h264chroma.h, vp3dsp.h and vp56dsp.h from all VP8/9
    files.

    (This also fixes a build issue : If one compiles with -O0 and disables
    everything except the VP8-VAAPI encoder, the file containing
    ff_vpx_norm_shift is not compiled, yet this is used implicitly
    by vp56_rac_gets_nn() which is defined in vp56.h ; it is unused
    by the VP8-VAAPI encoder and declared as av_unused, yet with -O0
    unused noninline functions are not optimized away, leading to
    linking failures. With this patch, said function is not included
    in vaapi_encode_vp8.c any more.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/nvdec_vp8.c
    • [DH] libavcodec/vaapi_vp8.c
    • [DH] libavcodec/vp56.h
    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp8.h
    • [DH] libavcodec/vp9.c
    • [DH] libavcodec/vp9_mc_template.c
    • [DH] libavcodec/vp9block.c
    • [DH] libavcodec/vp9dec.h
    • [DH] libavcodec/vp9mvs.c
    • [DH] libavcodec/vp9prob.c
    • [DH] libavcodec/vp9recon.c
    • [DH] libavcodec/vp9shared.h
  • x86/lpc : implement a new Welch windowing function

    19 septembre 2022, par Lynne
    x86/lpc : implement a new Welch windowing function
    

    Old one was written with the assumption only even inputs would be given.
    This very messy replacement supports even and odd inputs, and supports
    AVX2 for extra speed. The buffers given are usually quite big (4k samples),
    so the speedup is worth it.
    The new SSE version is still faster than the old inline asm version by 33%.

    Also checkasm is provided to make sure this monstrosity works.

    This fixes some FATE tests.

    • [DH] libavcodec/x86/Makefile
    • [DH] libavcodec/x86/lpc.asm
    • [DH] libavcodec/x86/lpc.c
    • [DH] libavcodec/x86/lpc_init.c
    • [DH] tests/checkasm/Makefile
    • [DH] tests/checkasm/checkasm.c
    • [DH] tests/checkasm/checkasm.h
    • [DH] tests/checkasm/lpc.c