
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (82)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (10147)
-
Resume encoding or re-encoding video after a power loss in ffmpeg
2 août 2018, par Bhupendra PandeyI have a php script that reads from database and converts videos using ffmpeg.
Sometimes the power goes off and my server turns of suddenly.
What should I do to re-encode the video that was being converted while the power loss occurred ?
The whole process should be automatic.
-
Resume encoding or re-encoding video after a power loss in ffmpeg
23 juin 2016, par Bhupendra PandeyI have a php script that reads from database and converts videos using ffmpeg.
Sometimes the power goes off and my server turns of suddenly.
What should I do to re-encode the video that was being converted while the power loss occurred ?
The whole process should be automatic.
-
lavfi/vf_drawtext : fix memory management when destroying font face
31 octobre 2024, par Leandro Santiagolavfi/vf_drawtext : fix memory management when destroying font face
Ref https://trac.ffmpeg.org/ticket/11152
According to harfbuzz docs, hb_ft_font_set_funcs() does not need to be
called, as, quoted :```
An #hb_font_t object created with hb_ft_font_create()
is preconfigured for FreeType font functions and does not
require this function to be used.
```Using this function seems to cause memory management issues between
harfbuzz and freetype, and could be eliminated.This commit also call hb_ft_font_changed() when the underlying FC_Face
changes size, as stated on hardbuzz :```
HarfBuzz also provides a utility function called hb_ft_font_changed() that you should call
whenever you have altered the properties of your underlying FT_Face, as well as a hb_ft_get_face()
that you can call on an hb_font_t font object to fetch its underlying FT_Face.
```Finally, the execution order between hb_font_destroy() and
hb_buffer_destroy() is flipped to match the order of creation of
the respective objects.Signed-off-by : Leandro Santiago <leandrosansilva@gmail.com>
Signed-off-by : Marton Balint <cus@passwd.hu>