
Recherche avancée
Autres articles (65)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (8170)
-
How to stream video in the GUI using PyQt5 ?
30 mars 2020, par ShriyaI am a newbie with Python as well as ffmpeg. Once the webcam is assigned to the Pine, the video gets stored in the /mnt/hls directory. The video from this directory needs to be displayed on the Front End which was designed using QtDesigner and the wiring is done using PyQt5. The video needs to be displayed when a button is clicked by the user in the OpenGLWidget.
The command line for the video stream is
"Ffplay -fflags nobuffer -flags low_delay [HLS playlist]"
, which can be run usingos.system()
. My issue is with getting the video displayed in the OpenGLWidget. Could someone help me through this or direct me to another similar question or a different link ? Thank you.

-
how to pipe in h264 frame byte array into ffmpeg and mux intro rtmp c#
2 juin 2019, par NitrogenBluex264 -> h264 frame byte[] array -> pipe -> ffmpeg -> rtmp
only reason im not using ffmpeg as the encoder is need direct parameter update with encoder every second
proc.StartInfo.Arguments = String.Format("-f image2pipe -i pipe :.h264 -an -y -f flv 0", "rtmp ://127.0.0.1/example/example") ;
either
no content on stream #0 or ffmpeg doesn’t load -
FFMPEG : Set output res and bitrate depending upon input video
21 octobre 2019, par JegschemeschI’m processing user videos with differing aspect ratios. It seems FFMPEG only allows you to specify a fixed resolution. I want the output res to be appropriate for the input res. Similarly, I’d like FFMPEG to intelligently set the output bitrate based on the input video : obviously it shouldn’t be any bigger than the input.
I can get the properties of a video with,
ffmpeg -i example.flv
But this requires some ugly parsing of the output, so I’m wondering if FFMPEG or some other tool has a more direct facility.
Basically, I have the Youtube problem : crap comes in, reasonably uniform quality should come out.