
Recherche avancée
Autres articles (103)
-
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 -
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) (...)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11741)
-
Can't write out flv file in openCV in Windows
7 août 2015, par dev_nutI’m trying to write out a flv file in openCV 2.4.9 in Windows 8.1 and it seems this gives an error.
[flv @ 05821a00] Tag FLV1/0x31564c46 incompatible with output codec id '22' ([2]
[0][0][0])After googling around, I noticed that I may have to recompile with ffmpeg support. I set up cmake (I’m a cmake noob) and did that. But, I didn’t change anything with regard to ffmpeg (like point to new libraries). I can’t seem to find a guide that would help me here.Is this the right way to go ? Would recompiling in this case, actually help at all ?
- How do I solve this problem ?
-
ffmpeg Cannot create temporary file in C :\WINDOWS~: Permission denied
26 juin 2021, par Bakhi get this error trying to build ffmpeg from git bash


$ make
CC libavdevice/alldevices.o
Cannot create temporary file in C:\WINDOWS\: Permission denied
make: *** [ffbuild/common.mak:67: libavdevice/alldevices.o] Error 3



I tried to take ownership of C :\windows but the problem persists.


-
FFmpeg file size while recording multiple windows at same time
29 août 2021, par RuanSI'm currently recording 3 windows at once, and placing them next to each other, windows dimensions are :
400x500, 830x500, 830x500
, using-c:v h264_nvenc
to reduce the use of CPU.

The first and second windows have very low frames change, the third window does change frames frequently.


ffmpeg -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title="" -c:v h264_nvenc -qp 0 -c:a copy -vsync vfr -filter_complex hstack=inputs=3 output.mp4



Doesn't need to be great quality, 'normal/medium' quality is enough, also, I'm recording only video, no audio.


After 3min the file size was over 340MB, would like to ask if there are any better options in which I could be used to reduce the file size also CPU use (if possible).