
Recherche avancée
Autres articles (111)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 ;
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (32051)
-
Read rtmp live streaming video using python
20 octobre 2022, par Telugu TrackerI am streaming a session using rtmp server(NGINX). I got the stream url as

rtmp://ip:port/live/stream_name
.
How can I read the live stream in my python code(or any other) to do live transcription ?

-
Revision 33026 : Ajout des classes mots, breves, auteurs ... dans les extras
17 novembre 2009, par shnoulle@… — LogAjout des classes mots, breves, auteurs ... dans les extras
-
Reliably get PTS values in ffmpeg ?
21 novembre 2013, par karl_I'm trying to write a method that will provide the next frame and presentation time stamp when queried. The code currently looks something like this :
while( getNextFrame(image, pts) )
{
// show current image
drawImage(currentImage);
sleep(pts);
currentImage = image;
}I've been following the Dranger tutorials to this point, but have stalled on reliably getting a PTS value for frames (http://www.dranger.com/ffmpeg/tutorial05.html). The PTS values returned are always 0.
Also,
get_buffer()
has been deprecated, so I'm now using theget_buffer2()
method to set the global pts value. However, therelease_buffer
method has also been deprecated and I can't seem to find it's replacement. This leads me to believe that the method laid out in the tutorials may no longer be the best way of accomplishing this task.In short, using up to date ffmpeg, what's the best way to grab frame pts values reliably ?