
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (61)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (9203)
-
avformat/ffrtmpcrypt : Fix int-conversion warning
22 décembre 2023, par Frank Plowmanavformat/ffrtmpcrypt : Fix int-conversion warning
The gcrypt definition of `bn_new` used to use the return statement
on errors, with an AVERROR return value, regardless of the signature
of the function where the macro is used - it is called in
`dh_generate_key` and `ff_dh_init` which return pointers. As a result,
compiling with gcrypt and the ffrtmpcrypt protocol resulted in an
int-conversion warning. GCC 14 may upgrade these to errors [1].This patch fixes the problem by changing the macro to remove `AVERROR`
and instead set `bn` to null if the allocation fails. This is the
behaviour of all the other `bn_new` implementations and so the result is
already checked at all the callsites. AFAICT, this should be the only
change needed to get ffmpeg off Fedora's naughty list of projects with
warnings which may be upgraded to errors in GCC 14 [2].[1] : https://gcc.gnu.org/pipermail/gcc/2023-May/241264.html
[2] : https://www.mail-archive.com/devel@lists.fedoraproject.org/msg196024.htmlSigned-off-by : Frank Plowman <post@frankplowman.com>
Signed-off-by : Martin Storsjö <martin@martin.st> -
Anomalie #3535 : liste des rédacteurs connectés
13 octobre 2016, par guytarr °Pierre KUHN a écrit :
Frank, c’est aussi le cas en 3.0.29 ou la valeur par défaut est vide.
Je viens de tomber sur ce cas lors d’une montée de version 2.1 à 3.0.
En 2.1, avec imessage vide, on apparaît dans la liste des connectés. Du coup, pour conserver le comportement sans rien touché, que pensez-vous de peupler à "oui" lorsque la valeur n’est pas "non" pour les 1comite et 0minirezo, afin de suivre la même logique ? c’est ce que j’ai fait pour ma part.
en 3.0 et 3.1 la résultat de la boucle(#VAL’Y-m-d H:i:s’|date(#VAL’-15 minutes’) !par en_lignepagination 10’, ’>(#ID_AUTEUR">#NOM[  ;... (#GRAND_TOTAL|>10|oui) ([(#GRAND_TOTAL|objet_afficher_nbauteur)]) ]
donne :<br /><pre>
SELECT auteurs.en_ligne, auteurs.id_auteur, auteurs.nom
FROM spip_auteurs AS `auteurs`
WHERE NOT((auteurs.id_auteur = '1'))
AND ((auteurs.statut IN ('1comite','0minirezo')))
AND NOT((auteurs.imessage = 'non'))
AND (auteurs.en_ligne > '2016-10-12 23:39:09')
ORDER BY auteurs.en_ligne DESC
</pre>Autre solution, corriger la boucle pour obtenir le même comportement qu’en 2.1 que la valeur soit à oui ou vide.
-
avcodec/vvcdec : ff_vvc_frame_submit, avoid initializing task twice.
25 avril 2024, par Nuo Miavcodec/vvcdec : ff_vvc_frame_submit, avoid initializing task twice.
For some error bitstreams, a CTU belongs to two slices/entry points.
If the decoder initializes and submmits the CTU task twice, it may crash the program
or cause it to enter an infinite loop.Reported-by : Frank Plowman <post@frankplowman.com>