
Recherche avancée
Autres articles (49)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (8824)
-
PJSIP with SDL and FFMPEG for iPhone [closed]
14 décembre 2012, par John QualisHas anyone been able to compile PJSIP with SDL and FFMPEG support for iOS ?
-
FFmpeg select jpg files
28 août 2023, par pinq-I want to make gif out of images. Images names are in format 1-XXXxxxxxx.jpg, 2-XXX-xxxx.jpg, 3-XXXxxxX.jpg.... 123-XXxxxxX.jpg.


I'm trying to use this command :


ffmpeg -framerate 1 -i 'images/%d-*.jpg' -s 320x180 ready.gif



But then I get error message :


'images/%d-*.jpg': No such file or directory



how do select images that start with number ?


-
FFMPEG and AVCONV amix audio files lowers a volume
13 novembre 2019, par LiborRihaI am using this command
foreach( $records as $record ) {
if( $inputs == 0 ) {
$meta_tags .= "1";
} else {
$meta_tags .= ":0";
}
$inputs++;
$files .= ' -i ' . $path . $record;
}
$meta_tags .= "]";
$shell_command = 'ffmpeg '. $files .' -filter_complex "'. $meta_tags .'amix=inputs='. $inputs .':duration=longest" output.wav';Everything goes well but when the mix is done, it lowers a volume. Can you please help me ? I have tried avconv too.