
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (92)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (10570)
-
Anomalie #3377 : #ACTION_FORMULAIRE incomplet avec une install en sous répertoire
25 janvier 2015, par Nicolas DorignyPrécision : le bug apparait en urls propres, pas en urls simples.
C’est lié à priori lié à urls_decoder_url(), qui elle même appelle urls_propres_dist() pour décoder l’url en cours, en lui passant l’url complète (avec le sous répertoire).
urls_propres_dist() ne retrouve pas l’objet correspondant et renvoie un contexte 404 au lieu de id_article / article.Je ne sais pas aller plus loin, il y a peut être un nettoyage d’url à faire quelque part pour filtrer le sous répertoire (?)
-
r210enc.c : Simplify and never store more than 10 bits.
27 décembre 2014, par Reimar Döffingerr210enc.c : Simplify and never store more than 10 bits.
The r10k and avrp decoders would previously store 12 bit precision
for the blue channel, which is inconsistent and probably not a
desirable behaviour.
Now the 2 unused extra bits are set to 0.
This is possibly not ideal either as RGBA1010102 format has the same
layout but stores alpha in these bits, thus explicitly setting them
to 1 might be preferable.Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
Systematic artefacts from 10bit source
8 janvier 2015, par user3729198When encoding from a 10 bit source file, compression / color artifacts appear. From what I can see, the problem lies in the "dc precision" command "-dc". I have tried different combinations and these are my results.
On HD encodings ”-dc8” will give you nice clean solid colors without artifacts. But gradients and shading will suffer and be rougher.
On HD encodings ”-dc11” will give you bad compression and color artifacts that look very systematic. But the Gradients look nice and smooth.
On SD encodings ”-dc8” will give you nice clean solid colors without artifacts. But gradients and shading will suffer and be rougher.
On SD encodings ”-dc9” will give you bad compression and color artifacts that look very systematic. But the Gradients look nice and smooth.
Why is this ? And can it be fixed ? From other encoding software’s if I mimic the settings, all the encodings looks nice in all cases. So it seems that there is a bug in ffmpeg.
Here is an example of the ffmpeg command I use :
-i INPUT -vcodec mpeg2video -aspect {$aspectRatio} -r 25 -pix_fmt yuv422p -timecode_frame_start 0 -minrate 150000k -maxrate 150000k -b 150000k -intra -flags +cgop -flags2 +ivlc+non_linear_q -dc 11 -sc_threshold 1000000000 -qscale 1 -qmin 1 -qmax 12 -bufsize 47185920 -rc_init_occupancy 47185920 -rc_buf_aggressivity 0.25 -s {$resolution} -vframes {$frameDuration} -an OUTPUT
If you want to try it yourself, make sure your source is 10bit, like Uncompressed 10 bit YUV.