Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (68)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7887)

  • libFLAC : Add a workaround for a bug in MSVC2105 update2

    5 mai 2016, par Erik de Castro Lopo
    libFLAC : Add a workaround for a bug in MSVC2105 update2
    

    MSVC2105 update2 compiles the C code :

    abs_residual_partition_sums[partition] =
    (FLAC__uint32)_mm_cvtsi128_si32(mm_sum) ;

    into this :

    movq QWORD PTR [rsi], xmm2

    while it should be :

    movd eax, xmm2
    mov QWORD PTR [rsi], rax

    With this patch, MSVC emits :

    movq QWORD PTR [rsi], xmm2
    mov DWORD PTR [rsi+4], r9d

    so the price of this workaround is 1 extra write instruction per
    partition.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/stream_encoder_intrin_avx2.c
    • [DH] src/libFLAC/stream_encoder_intrin_sse2.c
    • [DH] src/libFLAC/stream_encoder_intrin_ssse3.c
  • SIMD : remove outdated SSE2 code

    21 février 2017, par Erik de Castro Lopo
    SIMD : remove outdated SSE2 code
    

    Removes FLAC__lpc_restore_signal_16_intrin_sse2() which was faster
    than than C code, but not faster than MMX-accelerated ASM functions.
    It’s also slower than the new SSE4.1 functions that were added by
    the previous patch.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/include/private/lpc.h
    • [DH] src/libFLAC/lpc_intrin_sse2.c
    • [DH] src/libFLAC/stream_decoder.c
  • Correections for comments.

    28 juin 2014, par Erik de Castro Lopo
    Correections for comments.
    

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/lpc.c
    • [DH] src/share/grabbag/replaygain.c
    • [DH] src/share/replaygain_analysis/replaygain_analysis.c