
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (83)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9523)
-
How to create video from audio files using ffmpeg [duplicate]
8 juillet 2020, par Prateek SinglaI have around 8000 audio files ( 6 GB in total) mostly in either
m4a
ormp3
format. Is there a way to convert these audio files to video with filename appearing as a static poster image in video.
I was able to find drawtext filter in ffmpeg which might be helpful. But don't know how to write it out in one command so that I just pass in name of the audio file (mp3
/m4a
) and as output I get a video containing name of audio file as a display (with 256 by 144 pixel resolution
).

So far I have been able to do this all by using
ImageMagick
convert commmand to first create static images and then combine usingffmpeg
.

Since, there are many files I want this to be done programmatically using ffmpeg/python/javascript.
I want to do this to archive my audio recordings in Google Photos. Google photos accept unlimited storage for High Quality videos.


-
Evolution #4699 : CVT multi-étapes : un moyen de forcer la validation finale (passer à traiter) ?
22 mars 2021, par cedric -Corrigé par https://git.spip.net/spip/spip/commit/8bdd42a36f72187210281653c7c7a2d9bdfed7a8
On pouvait poster dansaller_a_etape
un numero d’etape, mais cela ne marchait que si c’était un retour en arrière.Avec le patch, cela permet potentiellement d’aller à la validation finale, en indiquant dans
aller_a_etape
un nombre plus grand ou égal que le nombre d’étapes, mais attention : il faudra que chaque étape soit valide selon chaque fonction verifier().
Si une des étapes n’est pas valide, le formulaire s’arrêtera à cette étape. -
libavcodec/vp8dec : fix the multi-thread HWAccel decode error
11 juin 2019, par Shaofei Wanglibavcodec/vp8dec : fix the multi-thread HWAccel decode error
Fix the issue : https://github.com/intel/media-driver/issues/317
the root cause is update_dimensions will be called multple times
when decoder thread number is not only 1, but update_dimensions
call get_pixel_format in each decode thread will trigger the
hwaccel_uninit/hwaccel_init more than once. But only one hwaccel
should be shared with all decode threads.
in current context,
there are 3 situations in the update_dimensions() :
1. First time calling. No matter single thread or multithread,
get_pixel_format() should be called after dimensions were
set ;
2. Dimention changed at the runtime. Dimention need to be
updated when macroblocks_base is already allocated,
get_pixel_format() should be called to recreate new frames
according to updated dimension ;
3. Multithread first time calling. After decoder init, the
other threads will call update_dimensions() at first time
to allocate macroblocks_base and set dimensions.
But get_pixel_format() is shouldn't be called due to low
level frames and context are already created.In this fix, we only call update_dimensions as need.
Signed-off-by : Wang, Shaofei <shaofei.wang@intel.com>
Reviewed-by : Jun, Zhao <jun.zhao@intel.com>
Reviewed-by : Haihao Xiang <haihao.xiang@intel.com>
Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>