
Recherche avancée
Autres articles (83)
-
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
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 (...)
-
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.
Sur d’autres sites (5154)
-
FFmpeg video is very distorted after a pixel-perfect start
7 septembre 2022, par AlvinfromDiasparI am using the following FFMpeg command to convert a H.264 UDP streamed video from a Tello drone to another address.



ffmpeg -i udp://0.0.0.0:11111 -preset ultrafast -vcodec libx264 -tune zerolatency -b 900k -f h264 udp://127.0.0.1:5000




Then I simply use the following OpenCv to read from that new address :



this.Capture = new OpenCvSharp.VideoCapture("udp://127.0.0.1:5000", OpenCvSharp.VideoCaptureAPIs.FFMPEG);




From this Capture reference, i obtain the next frame by calling this.Capture.Read(mat).
When i assigned the convert image to the UI, the image is pixel perfect !



However, after the initial rendering, i am not seeing immediate updates. But i do see very laggy video updates that is very distorted. It looks like each consecutive frame is just the delta/difference drawn on top of the previous frame.



Is there anything i can tweak/modify in my FFMpeg command to resolve this distorted video rendering ?



Update 1
I was able to make some progress. The video updates, still with distortion, but overall distortion is a bit less. And the frames update more responsively.



To get to this point, i simply added this parameter to my FFMpeg command :



-g 100




I also tried :



-g 300



-
ffmpeg- is there any limitation on number of drawtext filter used in a single command ?
31 mars 2017, par hacki have to write different text on a number of images. The final filter command is quite large (> 500 draw text filters in a single command). I am writing this to a text file and using filter_complex_script to read it.
If the number of frames and filter is small, it is working fine, but for a configuration with large number of images and draw text filters, it fails. Error is :Cannot find a valid font for the family Sans
Error initializing filter 'drawtext' with args 'enable=between(n,180,180):fontsize=28:fontfile=C\:/Windows/Fonts/Arial.ttf:fontcolor=0x000000:text=109.0:x=581:y=527-th'
Error initializing complex filters.
No such file or directory -
ffmpeg convert one png to DNxHD
15 mars 2019, par bcvery1I’m trying to create a DNxHD file from one PNG file. The output should be "24000/1001" fps, 1920x1080, using the dnxhd codec. Every frame should be the same. The outputted stream must be 20 seconds in length.
I have a solution which uses
filter_complex
to loop the PNG for each frame, however this results in extremely large files. Given that I will be combining possibly multiple hundred DNxHD files into one AAF file, the output file size is too large.Is there any improvement I can make on the command below which would achieve this file size reduction ?
ffmpeg -i INFILE.png -y -nostdin -an -vcodec dnxhd -pix_fmt yuv422p -vb 36M -framerate 24000/1001 -filter_complex loop=479:1:0 OUFILE.dnxhd
I do not know ffmpeg all that well, this command has been constructed by copying parts of commands I have found online.