
Recherche avancée
Autres articles (97)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
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" (...)
Sur d’autres sites (5651)
-
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 :