
Recherche avancée
Autres articles (31)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne 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 2011Contrairement à 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, parMediaSPIP 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 BankoskiChanged 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 bOk vu, je pense qu’on doit pouvoir fixer ça dans
_image_tag_changer_taille()
avec le patch suivant :- <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>
- <span class="line comment">index d93acc1..37e5c72 100644</span>
- <span class="line head"><span class="head">--- </span><span class="filename">a/ecrire/inc/filtres_images_lib_mini.php</span></span>
- <span class="line head"><span class="head">+++ </span><span class="filename">b/ecrire/inc/filtres_images_lib_mini.php</span></span>
- <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>) {
- <span class="comment">// ca accelere le rendu du navigateur</span>
- <span class="comment">// ca permet aux navigateurs de reserver la bonne taille </span>
- <span class="comment">// quand on a desactive l'affichage des images.</span>
- <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>
- <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>
- <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>
- <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>
- <span class="comment">// attributs deprecies. Transformer en CSS</span>
- <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>)) {
- </span>
Attendons d’autres avis avant de l’appliquer.
-
avcodec/cfhd : Fix decoding regression due to height check
21 juillet 2017, par Vodyannikov Aleksandravcodec/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>