
Recherche avancée
Autres articles (40)
-
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (6690)
-
fatal error : 'Carbon/Carbon.h' file not found when trying to compile with glfw module macos monterey
21 avril 2022, par Nowfal Salahudeen -
Revision 15801 : Formulation française cohérente avec le reste des options de conf ...
20 juin 2010, par da@… — LogFormulation française cohérente avec le reste des options de conf (infinitifs)
-
How to create a random video from a random picture annd random audio file
20 août 2019, par Francesco MiliziaI am working on a batch conversion process where I need to add a random picture (a
.jpg
) on a random.mp3
and make an.mp4
.This is the code I am using in terminal Mac OS X putting all the
.mp3
and the.jpg
in the same folder :for f in *.mp3; do /usr/local/Cellar/ffmpeg/4.1_1/bin/ffmpeg -r 1 -loop 1 -i abc5.jpg -i "$f" -c:a copy -c:v libx264 -vf scale=1280:720 -shortest "${f%mp3}mp4"; done
It works great, but I don’t know how to add another random feature for the
.jpg
files, so every time I have to put a different.jpg
and change the name (usually in the file not in the script). I also know this must be something with for ((..., but I don’t know how to add it properly.for f in *.mp3; do /usr/local/Cellar/ffmpeg/4.1_1/bin/ffmpeg -r 1 -loop 1 -i abc5.jpg -i "$f" -c:a copy -c:v libx264 -vf scale=1280:720 -shortest "${f%mp3}mp4"; done