
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (13)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (4248)
-
matroskadec : introduce resync function.
28 mai 2013, par Sean McGovernmatroskadec : introduce resync function.
This allows handling matroska files with errors.
Fixes test4.mkv and test7.mkv from the official Matroska test suite,
and by extension Bugzilla #62.Based on a patch by Reimar Doffinger <Reimar.Doeffinger@gmx.de>
Signed-off-by : Anton Khirnov <anton@khirnov.net>
-
lavfi/paletteuse : fix to support transparency
24 octobre 2017, par Bjorn Rochelavfi/paletteuse : fix to support transparency
This patch enables paletteuse to identify the transparency in incoming
video and tag transparent pixels on outgoing video with the correct
index from the palette.This requires tracking the transparency index in the palette,
establishing an alpha threshold below which a pixel is considered
transparent and above which the pixel is considered opaque, and
additional changes to track the alpha value throughout the conversion
process.This change is a partial fix for https://trac.ffmpeg.org/ticket/4443
However, animated GIFs are still output incorrectly due to a bug
in gif optimization which does not correctly handle transparency.Signed-off-by : Clément Bœsch <u@pkh.me>
-
ffmpeg : How to create a video from images with different delay between the images ? [duplicate]
28 mai 2020, par Alex PocaI grabbed a quantity of snapshots at irregular times and would like to create a posthumous (fake) real-time video (mp4, animated GIF, etc) from them. This means I need to insert a proper delay between these frames, and this dwell time changes between each couple of frames.



As an example :



- 

- frame0, taken at t0 ;
- frame1, taken at t1=1 sec ;
- frame2, at t2=5 sec ;
- end dwell time of 2 seconds











should return a 7-sec video like this :






I cannot afford to work manually with a video editing software because we are talking about hundreds of frames, but I can easily prepare a list with all frame names and delays between them.



I read around how to create a video with a fixed interframe time (i.e. from here), how to create animated GIFs with Python (alas with fixed delay), and how to add a frame at the end of an existing video (the dwell time between second-last and last frame can be set, but the process is very inefficient and slow for hundred of frames).



Can it be done with ffmpeg or any other Linux tool ?