Recherche avancée

Médias (91)

Autres articles (54)

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

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

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

  • Safari 9.0 can not play mp4 video on the storage server

    22 août 2016, par Mehmet

    The following video link cannot be played with safari 9.0 (latest version). But older versions of safari, chrome and firefox can play.

    http://assets00.grou.ps/0F2E3C/wysiwyg_files/Videos/saksuka/20150928104628-lhmkkfbhnkiisbhht.mp4

    I can play with safari 9.0 when i download the video from the server to my computer.

    That’s why I don’t think this problem stems video encoding.

    I have done these settings ;

    mime.types
    video/mp4   mp4 m4v
    video/ogg   ogv
    video/webm  webm

    httpd.conf
    AddType video/mp4 mp4 m4v
    AddType video/ogg ogv
    AddType video/webm webm

    .htaccess
    AddType video/mp4 mp4 m4v
    AddType video/ogg ogv
    AddType video/webm webm
  • Safari 9.0 can not play mp4 video on the storage server

    3 août 2022, par Mehmet

    The following video link cannot be played with safari 9.0 (latest version). But older versions of safari, chrome and firefox can play.

    



    http://assets00.grou.ps/0F2E3C/wysiwyg_files/Videos/saksuka/20150928104628-lhmkkfbhnkiisbhht.mp4

    



    I can play with safari 9.0 when i download the video from the server to my computer.

    



    That's why I don't think this problem stems video encoding.

    



    I have done these settings ;

    



    mime.types
video/mp4   mp4 m4v
video/ogg   ogv
video/webm  webm

httpd.conf
AddType video/mp4 mp4 m4v
AddType video/ogg ogv
AddType video/webm webm

.htaccess
AddType video/mp4 mp4 m4v
AddType video/ogg ogv
AddType video/webm webm


    


  • Revision a5e97d874b : VP9_COPY_CONVOLVE_SSE2 optimization This function suffers from a couple problem

    30 juillet 2015, par Scott LaVarnway

    Changed Paths :
     Modify /vpx_dsp/x86/vpx_convolve_copy_sse2.asm



    VP9_COPY_CONVOLVE_SSE2 optimization

    This function suffers from a couple problems in small core(tablets) :
    - The load of the next iteration is blocked by the store of previous iteration
    - 4k aliasing (between future store and older loads)
    - current small core machine are in-order machine and because of it the store
    will spin the rehabQ until the load is finished
    fixed by :
    - prefetching 2 lines ahead
    - unroll copy of 2 rows of block
    - pre-load all xmm regiters before the loop, final stores after the loop
    The function is optimized by :
    copy_convolve_sse2 64x64 - 16%
    copy_convolve_sse2 32x32 - 52%
    copy_convolve_sse2 16x16 - 6%
    copy_convolve_sse2 8x8 - 2.5%
    copy_convolve_sse2 4x4 - 2.7%
    credit goes to Tom Craver(tom.r.craver@intel.com) and Ilya
    Albrekht(ilya.albrekht@intel.com)

    Change-Id : I63d3428799c50b2bf7b5677c8268bacb9fc29671