
Recherche avancée
Autres articles (106)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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
Sur d’autres sites (11674)
-
Convert PNG sequence to MP4 from directory
9 mai 2020, par friendlygiraffeOn a mac I would normally convert a folder of pngs to mp4 using the following :



ffmpeg -framerate 25 -i -pattern_type glob -i "*" -c:v libx264 -pix_fmt yuv420p -b:v 10M output.mp4



Now I'm trying to accomplish the same using windows 10, but globbing is not supported.



Not knowing what the filenames might be, is there a decent way of getting a complete file list of the directory and implementing it with ffmpeg ?


-
Convert FLV to MP3 using Java ? [closed]
20 juin 2013, par Syed Sabhi XaidiPlease Tell me that how i use ffmpeg use in java to convert FLV to MP3.Actually i want to make a converter in java that further will be integrated in website so please help me to make this .
-
convert avi to 3gp with ffmpeg
2 octobre 2013, par jeetI'm trying to convert avi to 3gp, and reduce the size of frames from 800x600 to a smaller size, suitable for mobiles.
What size should I use and where to set it in this command below ?
Please give me the new command.ffmpeg -i input.avi -vcodec libx264 -s qvga -b 6438912 -r 16 -acodec libvo_aacenc -ab 393216 -ar 32000 -ac 1 -y output.3gp
Thanks