Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (55)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (9642)

  • x86/float_dsp : use SWAP in vector_fmac_scalar Win64

    16 avril 2014, par James Almer
    x86/float_dsp : use SWAP in vector_fmac_scalar Win64
    

    The mova is unnecessary

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/x86/float_dsp.asm
  • lavf/rtspcodes : add missing header include

    10 avril 2014, par James Almer
    lavf/rtspcodes : add missing header include
    

    Fixes make checkheaders

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/rtspcodes.h
  • matroskadec : Improve TTA duration calculation

    17 août 2013, par James Almer
    matroskadec : Improve TTA duration calculation
    

    Calculate the duration as accurately as possible to improve decoding of samples
    where the last frame is smaller than the rest.

    Example :
    Take lossless-audio/luckynight-partial.tak from the FATE suit and convert it
    to TTA muxed into matroska :

    ffmpeg -i $(SAMPLES)/lossless-audio/luckynight-partial.tak -c:a tta lucky.mka

    The framemd5 output for lucky.mka without this patch :

    0, 0, 0, 46080, 184320, 7c3751ddd571d2903c3cf0ab4b3e3d0a
    0, 46080, 46080, 46080, 184320, 6b70c782ba1da3f933fde2daa4f96b73
    0, 92160, 92160, 46080, 184320, dcf70d89c54b9a4f0b302d4ec4fb302d
    0, 138240, 138240, 46080, 184320, 48713ca38b388d2ea4abf5b86ed1226f
    0, 184320, 184320, 46080, 184320, 12188a23648e7ebfb07cd6fe9197b2ea
    0, 230400, 230400, 46080, 184320, 49653ab8186a5d4a044ed284671a26e0
    0, 276480, 276480, 46080, 184320, 5e82c6a7fe58c7ea612c03a0a2927dd4
    0, 322560, 322560, 46080, 184320, 83dc449dbd9eab5f2e8ad2b4403d6a21
    0, 368640, 368640, 46080, 184320, bdd6b92c23d30978d4e802d305b0fc49

    With this patch :

    0, 0, 0, 46080, 184320, 7c3751ddd571d2903c3cf0ab4b3e3d0a
    0, 46080, 46080, 46080, 184320, 6b70c782ba1da3f933fde2daa4f96b73
    0, 92160, 92160, 46080, 184320, dcf70d89c54b9a4f0b302d4ec4fb302d
    0, 138240, 138240, 46080, 184320, 48713ca38b388d2ea4abf5b86ed1226f
    0, 184320, 184320, 46080, 184320, 12188a23648e7ebfb07cd6fe9197b2ea
    0, 230400, 230400, 46080, 184320, 49653ab8186a5d4a044ed284671a26e0
    0, 276480, 276480, 46080, 184320, 5e82c6a7fe58c7ea612c03a0a2927dd4
    0, 322560, 322560, 46080, 184320, 83dc449dbd9eab5f2e8ad2b4403d6a21
    0, 368640, 368640, 46080, 184320, bdd6b92c23d30978d4e802d305b0fc49
    0, 414720, 414720, 4230, 16920, b50b440c5bbcecb8e9fbece643447593

    The duration without this patch was calculated as 418950000000, which is bigger
    than uint32_t and as such stored as 2338172288.
    With this patch the duration is correctly calculated as 418950.

    Signed-off-by : James Almer <jamrial@gmail.com>
    Approved-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c