
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (22)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (6077)
-
Revision 53d797840e : Split macro strings on whitespace Match any whitespace instead of individual sp
12 novembre 2013, par JohannChanged Paths :
Modify /build/make/ads2gas_apple.pl
Split macro strings on whitespaceMatch any whitespace instead of individual spaces. The macro
definitions in vp9/common/arm/neon/vp9_short_idct32x32_1_add_neon.asm
triggered this and treated spaces as arguments leading to lines like :
$8vld1$8.$88$8 $8q8$8, [$$89$8], $$8stride$8Change-Id : I2d5718aba4614e4fd7b702e15c2a1bd80e656bd2
-
How can I make a GStreamer pipeline to read individual frames and publish stream ?
30 janvier 2024, par Alvan RahimliI have an external system which sends individual H264 encoded frames one by one via socket. What I'm trying to do is getting these frames and publishing an RTSP stream to RTSP server that I have.


After getting frames (which is just reading TCP socket in chunks) my current approach is like this :


I read frames, then start a process with following command, and then write every frame to STDIN of the process.


gst-launch-1.0 -e fdsrc fd=0 ! 
 h264parse ! 
 avdec_h264 ! 
 videoconvert ! 
 videorate ! 
 video/x-raw,framerate=25/1 ! 
 avimux ! 
 filesink location=gsvideo3.avi



I know that it writes stream to AVI file, but this is closest I was able to get to a normal video. And it is probably very inefficient and full of redundant pipeline steps.


I am also open to FFMPEG commands, but GStreamer is preferred as I will be able to embed it to my C# project via bindings and keep stuff in-process.


Any help is appreciated, thanks in advance !


-
How do I use fffmpeg save the individual frames of a GIF into PNGs ?
11 novembre 2020, par adnauseamI have a
.gif
file on my filesystem and I want all of its frames to be saved as.png
files. How can I do this with ffmpeg ?