
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (39)
-
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. -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
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
Sur d’autres sites (3056)
-
Sample code for rtp stream from FFMPEG
9 mars 2015, par Yogesh KulkarniI am searching sample code in c or cpp which will send rtp stream using ffmpeg library. Do anyone know where I will get it ?
-
Can ffmpeg burn in time code ?
12 août 2017, par spinonI have a need to burn in a time code to a video and am wondering if this is something that ffmpeg is capable of ?
-
How to stream frames from OpenCV C++ code to Video4Linux or ffmpeg ?
6 juillet 2022, par usamazfI am experimenting with OpenCV to process frames from a video stream. The goal is to fetch a frame from a stream, process it and then put the processed frame to a new / fresh stream.


I have been able to successfully read streams using OpenCV video capture functionality. But do not know how I can create an output stream with the processed frames.


In order to do some basic tests, I created a stream from a local video file using ffmpeg like so :


ffmpeg -i sample.mp4 -v 0 -vcodec mpeg4 -f mpegts \
 "udp://@127.0.0.1:23000?overrun_nonfatal=1&fifo_size=50000000"



And in my C++ code using the VideoCapture functionality of the OpenCV library, I am able to capture the above created stream. A basic layout of what I am trying to achieve is attached below :


cv::VideoCapture capture("udp://@127.0.0.1:23000?overrun_nonfatal=1&fifo_size=50000000", cv::CAP_FFMPEG);

cv::Mat frame;

while (true) 
{
 // use the above stream to capture a frame
 capture >> frame;
 
 // process the frame (not relevant here)
 ...

 // finally, after all the processing is done I 
 // want to put this frame on a new stream say at
 // udp://@127.0.0.1:25000, I don't know how to do
 // this, ideally would like to use Video4Linux but
 // solutions with ffmpeg are appreciated as well
}



As you can see from comment in above code, I don't have any idea how I should even begin handling this, I tried searching for similar questions but all I could find was how to do VideoCapture using streams, nothing related to outputting to a stream.


I am relatively new to this and this might seem like a very basic question to many of you, please do excuse me.