
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 (39)
-
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 (...) -
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8484)
-
avformat/movenc : Check that frame_types other than EAC3_FRAME_TYPE_INDEPENDENT have...
27 juin 2018, par Michael Niedermayeravformat/movenc : Check that frame_types other than EAC3_FRAME_TYPE_INDEPENDENT have a supported substream id
Fixes : out of array access
Fixes : ffmpeg_bof_1.aviFound-by : Thuan Pham, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/ac3_parser : Check init_get_bits8() for failure
27 juin 2018, par Michael Niedermayeravcodec/ac3_parser : Check init_get_bits8() for failure
Fixes : null pointer dereference
Fixes : ffmpeg_crash_6.aviFound-by : Thuan Pham, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Cannot play amr rtp stream using ffmpeg
1er juin 2020, par Vikram DattuI want to receive and play amr packets streamed using RTP.



Packets are sent to my macbook on port
9999



I can receive packets using simple C program for UDP receiver.
I use
bind
to9999
port and userecvfrom
to receive packets.


However when I use
ffmpeg
command to do the same, it is not able to receive single packet.


Command used is :
ffplay -protocol_whitelist file,udp,rtp -i test.sdp



Contents of test.sdp :



v=0
o=Andrew 2890844526 2890844526 IN IP4 192.168.1.106
s= SDP Blog
c=IN IP4 192.168.1.106
t=0 0
m=audio 9999 RTP/AVP 100
a=rtpmap:100 AMR/8000/1
a=fmtp:100 octet-align=1




192.168.1.106
is sender's address.


I have tried changing this address to
127.0.0.1
. Doesn't help.


I am stuck at the point and not cannot find anything helpful.



By the way,
sample sine wav generator example to stream on same device (loopback on 127.0.0.1) works.