Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (31)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (6035)

  • avcodec/jpeg2000dec : Also include remaining length in "Block length" error message

    15 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dec : Also include remaining length in "Block length" error message
    

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

    • [DH] libavcodec/jpeg2000dec.c
  • avcodec/vvc/vvc_ps : Use union for luts to avoid unaligned accesses

    18 février 2024, par Andreas Rheinhardt
    avcodec/vvc/vvc_ps : Use union for luts to avoid unaligned accesses
    

    These arrays are currently accessed via uint16_t* pointers
    although nothing guarantees their alignment. Furthermore,
    this is problematic wrt the effective-type rules.
    Fix this by using a union of arrays of uint8_t and uint16_t.

    Reviewed-by : Nuo Mi <nuomi2021@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vvc/vvc_filter.c
    • [DH] libavcodec/vvc/vvc_filter_template.c
    • [DH] libavcodec/vvc/vvc_inter.c
    • [DH] libavcodec/vvc/vvc_ps.c
    • [DH] libavcodec/vvc/vvc_ps.h
    • [DH] libavcodec/vvc/vvcdsp.h
  • Evolution #4427 : Permettre (via une constante) de passer de 65 536 à 4096 le nombre max de fichie...

    24 janvier 2020, par - Equipement

    Lignes supprimées (dans les deux fonctions) :

    1. <span class="CodeRay"><span class="local-variable">$d</span> = <span class="predefined">substr</span>(<span class="local-variable">$nom_cache</span>, <span class="integer">0</span>, <span class="integer">2</span>);
    2. <span class="local-variable">$u</span> = <span class="predefined">substr</span>(<span class="local-variable">$nom_cache</span>, <span class="integer">2</span>, <span class="integer">2</span>);
    3. </span>

    Télécharger

    Lignes ajoutées (dans les deux fonctions) :

    1. <span class="CodeRay">  <span class="local-variable">$longueur_d</span> = <span class="integer">2</span>;
    2.   <span class="keyword">if</span> (<span class="predefined">defined</span>(<span class="string"><span class="delimiter">'</span><span class="content">_CACHE_MAX_4096_FILES</span><span class="delimiter">'</span></span>) <span class="keyword">AND</span> _CACHE_MAX_4096_FILES){
    3.     <span class="local-variable">$longueur_d</span> = <span class="integer">1</span>;
    4.   }
    5.     <span class="local-variable">$d</span> = <span class="predefined">substr</span>(<span class="local-variable">$nom_cache</span>, <span class="integer">0</span>, <span class="local-variable">$longueur_d</span>);
    6.     <span class="local-variable">$u</span> = <span class="predefined">substr</span>(<span class="local-variable">$nom_cache</span>, <span class="local-variable">$longueur_d</span>, <span class="integer">2</span>);
    7. </span>

    Télécharger