Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (31)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

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

  • Revision 12c4458db9 : Test vectors for odd image width and height. Change-Id : I39286df9fc76e3451f14ce

    20 février 2014, par Jim Bankoski

    Changed Paths :
     Modify /test/test-data.sha1


     Modify /test/test.mk


     Modify /test/test_vectors.cc


     Modify /test/test_vectors.h



    Test vectors for odd image width and height.

    Change-Id : I39286df9fc76e3451f14ce2652d671e11b0c37bc

  • Anomalie #4198 : Le W3C ne valide pas les atttribut width et height qui ne sont pas des entiers.

    21 mai 2019, par b b

    Ok vu, je pense qu’on doit pouvoir fixer ça dans _image_tag_changer_taille() avec le patch suivant :

    1. <span class="CodeRay"><span class="line comment">diff --git a/ecrire/inc/filtres_images_lib_mini.php b/ecrire/inc/filtres_images_lib_mini.php</span>
    2. <span class="line comment">index d93acc1..37e5c72 100644</span>
    3. <span class="line head"><span class="head">--- </span><span class="filename">a/ecrire/inc/filtres_images_lib_mini.php</span></span>
    4. <span class="line head"><span class="head">+++ </span><span class="filename">b/ecrire/inc/filtres_images_lib_mini.php</span></span>
    5. <span class="change"><span class="change">@@</span> -861,8 +861,8 <span class="change">@@</span></span> <span class="keyword">function</span> <span class="function">_image_tag_changer_taille</span>(<span class="local-variable">$tag</span>, <span class="local-variable">$width</span>, <span class="local-variable">$height</span>, <span class="local-variable">$style</span> = <span class="predefined-constant">false</span>) {
    6.      <span class="comment">// ca accelere le rendu du navigateur</span>
    7.      <span class="comment">// ca permet aux navigateurs de reserver la bonne taille </span>
    8.      <span class="comment">// quand on a desactive l'affichage des images.</span>
    9. <span class="line delete"><span class="delete">-</span>    <span class="local-variable">$tag</span> = inserer_attribut(<span class="local-variable">$tag</span>, <span class="string"><span class="delimiter">'</span><span class="content">width</span><span class="delimiter">'</span></span>, <span class="eyecatcher"><span class="local-variable">$width</span></span>);</span>
    10. <span class="line delete"><span class="delete">-</span>    <span class="local-variable">$tag</span> = inserer_attribut(<span class="local-variable">$tag</span>, <span class="string"><span class="delimiter">'</span><span class="content">height</span><span class="delimiter">'</span></span>, <span class="eyecatcher"><span class="local-variable">$height</span></span>);</span>
    11. <span class="line insert"><span class="insert">+</span>    <span class="local-variable">$tag</span> = inserer_attribut(<span class="local-variable">$tag</span>, <span class="string"><span class="delimiter">'</span><span class="content">width</span><span class="delimiter">'</span></span>, <span class="eyecatcher"><span class="predefined">round</span>(<span class="local-variable">$width</span>)</span>);</span>
    12. <span class="line insert"><span class="insert">+</span>    <span class="local-variable">$tag</span> = inserer_attribut(<span class="local-variable">$tag</span>, <span class="string"><span class="delimiter">'</span><span class="content">height</span><span class="delimiter">'</span></span>, <span class="eyecatcher"><span class="predefined">round</span>(<span class="local-variable">$height</span>)</span>);</span>
    13.  
    14.      <span class="comment">// attributs deprecies. Transformer en CSS</span>
    15.      <span class="keyword">if</span> (<span class="local-variable">$espace</span> = extraire_attribut(<span class="local-variable">$tag</span>, <span class="string"><span class="delimiter">'</span><span class="content">hspace</span><span class="delimiter">'</span></span>)) {
    16.  
    17. </span>

    Télécharger

    Attendons d’autres avis avant de l’appliquer.

  • avcodec/cfhd : Fix decoding regression due to height check

    21 juillet 2017, par Vodyannikov Aleksandr
    avcodec/cfhd : Fix decoding regression due to height check
    

    Fixes : Ticket6546

    Regression since : 54aaadf648073149f1ac34f56cbde4e6c5aa22ef

    Reviewed-by : Muhammad Faiz <mfcc64@gmail.com>
    Reviewed-by : Kieran Kunhya <kierank@obe.tv>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cfhd.c