
Recherche avancée
Autres articles (97)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (14711)
-
x86/me_cmp : port mmxext and sse2 sad functions to yasm
17 septembre 2014, par James Almerx86/me_cmp : port mmxext and sse2 sad functions to yasm
Also add a missing c->pix_abs[0][0] initialization, and sse2 versions of
sad16_x2, sad16_y2 and sad16_xy2 (%15 to %20 faster than mmxext).
Since the _xy2 versions are not bitexact, they are accordingly marked as
approximate.Signed-off-by : James Almer <jamrial@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
How to set source port number, in ffmpeg and udp protocol ?
18 janvier 2021, par Rasoul SharifianI am using FFmpeg library to send webcam frames through udp protocol for my destination.


My command line is :


ffmpeg -f dshow -i video="Lenovo EasyCamera" -vcodec libx264 -f mpegts udp://192.168.30.20:8080 



My problem is on the receiver side, where we can not distinguish the source port number.
Is there any command line to set the source port number ?


Thanks a lot


-
Recieve audio data from RTP... filtered by port
11 janvier 2021, par Tech infinityI am having some trouble with recieving RTP stream using ffmpeg,


This is the SDP I'm using :


v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 40.123.196.251
t=0 0
a=tool:libavformat 58.29.100
m=audio 12222 RTP/AVP 0
b=AS:64
a=rtpmap:0 PCMU/8000/1



This is the ffmpeg command I'm using to write it to a wav file.


sudo ffmpeg -loglevel debug -protocol_whitelist file,crypto,udp,rtp -i test.sdp -c copy test.wav -y



Getting the file properly... But I need to filter it based on the source port... as these are different phone calls...


Pls help