
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (89)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 -
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
Sur d’autres sites (6934)
-
I'm trying to compile real static FFmpeg for macOS Arm Silicon but I don't know how to do it based on the website (https://www.osxexperts.net)
15 mai 2023, par EngMecI'm trying to compile real static FFmpeg for macOS Arm Silicon, but I have no experience and I don't know how to do it based on the website (https://www.osxexperts.net).


Could someone help me with a step-by-step where to put the downloaded files and especially how to Build for ARM (Apple Silicon) the script.


As I said, I don't know how to do it and I need help as in a step by step




As I said, I don't know how to do it and I need help as in a step by step


Thank you very much if you can help me


-
16 Website Metrics to Track If You Want to Grow Your Business
9 avril 2024, par Erin -
ImageMagick to crop image based on based on rectangular border color
3 septembre 2021, par Alvie MahmudI have some images that I would like to crop but hopefully via command line rather than doing each one manually.


I would like to crop the image (I've cropped top half, desaturated other colours and split frames with ffmpeg) based on where there is a border of a certain color (#31393C in this case). For example, I would like this image :


to be cropped like this :



I have tried some commands but they aren't working for me unfortunately.


convert image.jpg -bordercolor "#31393C" -border 2x2 -fuzz 10% -trim output.jpg



I have also tried to make the parts that aren't #31393C to be filled with white and then cropping which may potentially work as a solution as I want to improve the ability to use OCR :


convert image.jpg -fill white -fuzz 11% +opaque "#31393c" result.jpg
convert result.jpg -bordercolor white -border 10x10 -fuzz 10% -trim output.jpg



which works somewhat but not perfectly :