
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14984)
-
Evolution #3996 (Nouveau) : Y a t-il une limite de taille de cache dans SPIP ?
9 septembre 2017, par Julien -Ticket qui fait suite à des observations sur #3843.
cedric :
1/ il n’y a plus de quota cache en SPIP 3.1+ (aucune taille limite, c’est un nombre de slots qui fixe la limite)
2/ les images stockées dans local/ n’ont jamais été comptées dans la taille du cache et n’ont aucune influencemarcimat :
Notons que le génie ’invalideur’ est toujours appelé et utilise ’quota_cache’ ; le formulaire de vidage de cache affiche aussi le quota.
Probablement du code mort dans les 2 cas.Ref dans le code :
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc_version.php#L286
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc/genie.php#L141
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc/invalideur.php#L226dans la doc :
https://programmer.spip.net/Configurer-le-cache -
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>
-
ffmpeg : Turning images/audio into video with ffmpeg
7 mai 2018, par melanie93I am using ffmpeg to turn a sequence of images (img001.png, img002.png, and so on) into a video (output.mp4) using the following command :
ffmpeg -r 1/5 -i img%03d.png -r 25 -qscale:v 2 -shortest -codec:a copy output.mp4
The result is a video that displays every input image for five (5) seconds.
- Is it possible to have ffmpeg parse the filename paths and timings from a file ? I tried the slideshow tutorial on the official ffmpeg website but the output displayed only the last image, briefly, at the end of the video.
- Is it possible to bundle audio files with those settings ?
For example :
file 'image001.png'
file 'sound001.wav'
duration 5
file 'image002.png'
file 'sound002.wav'
duration 2
file 'image003.png'
file 'sound003.wav'
duration 3Image001 is displayed for five(5) seconds while sound001 is being played back and so on.