Recherche avancée

Médias (91)

Autres articles (49)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

Sur d’autres sites (10922)

  • avutil/mips : refactor msa load and store macros.

    17 juillet 2019, par Shiyou Yin
    avutil/mips : refactor msa load and store macros.
    

    Replace STnxm_UB and LDnxm_SH with new macros ST_H/W/D1/2/4/8.
    The old macros are difficult to use because they don't follow the same parameter passing rules.
    Changing details as following :
    1. remove LD4x4_SH.
    2. replace ST2x4_UB with ST_H4.
    3. replace ST4x2_UB with ST_W2.
    4. replace ST4x4_UB with ST_W4.
    5. replace ST4x8_UB with ST_W8.
    6. replace ST6x4_UB with ST_W2 and ST_H2.
    7. replace ST8x1_UB with ST_D1.
    8. replace ST8x2_UB with ST_D2.
    9. replace ST8x4_UB with ST_D4.
    10. replace ST8x8_UB with ST_D8.
    11. replace ST12x4_UB with ST_D4 and ST_W4.

    Examples of new macro : ST_H4(in, idx0, idx1, idx2, idx3, pdst, stride)
    ST_H4 store four half-word elements in vector 'in' to pdst with stride.
    About the macro name :
    1) 'ST' means store operation.
    2) 'H/W/D' means type of vector element is 'half-word/word/double-word'.
    3) Number '1/2/4/8' means how many elements will be stored.
    About the macro parameter :
    1) 'in0, in1...' 128-bits vector.
    2) 'idx0, idx1...' elements index.
    3) 'pdst' destination pointer to store to
    4) 'stride' stride of each store operation.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/h263dsp_msa.c
    • [DH] libavcodec/mips/h264chroma_msa.c
    • [DH] libavcodec/mips/h264dsp_msa.c
    • [DH] libavcodec/mips/h264idct_msa.c
    • [DH] libavcodec/mips/h264qpel_msa.c
    • [DH] libavcodec/mips/hevc_idct_msa.c
    • [DH] libavcodec/mips/hevc_lpf_sao_msa.c
    • [DH] libavcodec/mips/hevc_mc_bi_msa.c
    • [DH] libavcodec/mips/hevc_mc_biw_msa.c
    • [DH] libavcodec/mips/hevc_mc_uni_msa.c
    • [DH] libavcodec/mips/hevc_mc_uniw_msa.c
    • [DH] libavcodec/mips/hevcdsp_msa.c
    • [DH] libavcodec/mips/hevcpred_msa.c
    • [DH] libavcodec/mips/hpeldsp_msa.c
    • [DH] libavcodec/mips/qpeldsp_msa.c
    • [DH] libavcodec/mips/vp3dsp_idct_msa.c
    • [DH] libavcodec/mips/vp8_idct_msa.c
    • [DH] libavcodec/mips/vp8_lpf_msa.c
    • [DH] libavcodec/mips/vp8_mc_msa.c
    • [DH] libavcodec/mips/vp9_idct_msa.c
    • [DH] libavcodec/mips/vp9_intra_msa.c
    • [DH] libavcodec/mips/vp9_lpf_msa.c
    • [DH] libavcodec/mips/vp9_mc_msa.c
    • [DH] libavutil/mips/generic_macros_msa.h
  • Merge remote-tracking branch ’qatar/master’

    24 février 2014, par Michael Niedermayer
    Merge remote-tracking branch ’qatar/master’
    

    * qatar/master :
    doc : fix one accented word

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/filters.texi
  • Using FFMPEG : How to do a Scene Change Detection ? with timecode ?

    30 mai, par Mozart

    Based on this article it seems that it is possible to use FFMPEG to detect scene change in videos :&#xA;http://www.luckydinosaur.com/u/ffmpeg-scene-change-detector

    &#xA;&#xA;

    Now I have a video that displays a book text and when the text (word or sentence) is spoken it gets highlighted. &#xA;Something like this audio book : https://youtu.be/lA7L6ZNVKjc

    &#xA;&#xA;

    I need to know the timestamp when the text gets highlighted (hence scene change), this will allow me to add timestamp tags on my youtube video, so it becomes easier for listeners to navigate through the audiobook.

    &#xA;&#xA;

    What is the magic command line that would do this ?

    &#xA;&#xA;

    Thank you very much !

    &#xA;