
Recherche avancée
Autres articles (91)
-
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...) -
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. -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7443)
-
imagemagick -auto-level in ffmpeg
29 août 2024, par Sagi MannI've been looking for a solution to perform the equivalent of
magick -auto-level
in ffmpeg but am unable to find anything. There are some references stating I should first manually discover the levels using other software like GIMP, however, I'm looking for an automated and simpler solution. Any ideas how to address this ?

I've tried the following - the first enhanced the image which was initially prettry dark, but the second over-exposed it, causing it to become mostly white :


convert img.jpg -auto-level img2.jpg
ffmpeg -i img.jpg -vf "normalize" -y img2.jpg



Note : I apologize I cannot share the image as it is restricted by privacy policy


-
Reading a UDP stream by ffmpeg libavcodec
9 janvier 2014, par Blue SkyI want to read a video stream using ffmpeg libavcodec from a UDP address like udp ://:1500. I am using this code :
char *url = "udp://:1500";
char *format = "mpegts";
AVInputFormat *fmt = NULL;
AVFormatContext *oc = NULL;
int res;
fmt = av_find_input_format(format);
res = avformat_open_input(&oc, url, fmt , NULL);
if(res!=0){
printf("Could not open the stream\n");
exit(1);
}But when I run this code, the program halts forever after executing res = avformat_open_input(&oc, url, fmt , NULL) ;
Do you know what is the problem ?
-
Reading a UDP stream by ffmpeg libavcodec
3 avril 2021, par Blue SkyI want to read a video stream using ffmpeg libavcodec from a UDP address like udp ://:1500. I am using this code :



char *url = "udp://:1500";
char *format = "mpegts";

AVInputFormat *fmt = NULL;
AVFormatContext *oc = NULL;

int res;

fmt = av_find_input_format(format);
res = avformat_open_input(&oc, url, fmt , NULL);
if(res!=0){
 printf("Could not open the stream\n");
 exit(1);
}




But when I run this code, the program halts forever after executing res = avformat_open_input(&oc, url, fmt , NULL) ;



Do you know what is the problem ?