
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (55)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (9642)
-
FFmpeg/FFprobe - detect blank/empty/white image
26 septembre 2022, par John DoeIs it possible, using ffmpeg or ffprobe, to detect if an image is blank ? Only containing a single color, e.g. White.


I have done some digging and have come up with nothing at all, I don't even know if this is possible. I intend to execute via a batch file.


Thanks for any pointers.


-
lavc/mediacodec : remove stray empty lines
14 mars 2016, par Matthieu Bouron -
x264 : ignore empty options in bash script
26 février 2016, par manesI do some video encoding using a script with x264. Most options follow the pattern
x264 --option0 $value0 --option1 $value1 -o output.file input.file
The script reads the values from a text file. The text file contains key-values like
crf=18.3
. Unfortunately, this does not work for mb-tree, as the option does not have a $value, it is set by default and can be turned off with--no-mbtree
.If
mbtree=no-mbtree
is set in the text file, everything works fine. But if I choose to encode with mbtree turned on, the--$variable-for-mb-tree-or-no-mb-tree
is still in place, but unset or empty and x264 throws an error.How can I tell bash/ x264 to ignore an unset or empty variable ? I’d like to avoid an if…then…else and rather do it inline.