
Recherche avancée
Autres articles (107)
-
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (10383)
-
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.


-
Connection between ffmpeg and ffplay
26 juin 2013, par UserOfStackoverflowLet's say that ffmpeg is on computer "A" and ffplay is on computer "B". I want to stream from computer "A" to computer "B" using UDP, but I'm a bit confused since both applications (ffmpeg and ffplay) requires IP and Port. I'm confused because usually when two programs connects through the internet, one application requires IP and Port while another application requires only a Port. My question is, what IP address should I write to ffmpeg and what IP address should I write to ffplay ? Also does both applications should use same Port ?
-
aarch64 : Add assembly support for -fsanitize=hwaddress tagged globals.
21 août 2019, par Peter Collingbourneaarch64 : Add assembly support for -fsanitize=hwaddress tagged globals.
As of LLVM r368102, Clang will set a pointer tag in bits 56-63 of the
address of a global when compiling with -fsanitize=hwaddress. This requires
an adjustment to assembly code that takes the address of such globals : the
code cannot use the regular R_AARCH64_ADR_PREL_PG_HI21 relocation to refer
to the global, since the tag would take the address out of range. Instead,
the code must use the non-checking (_NC) variant of the relocation (the
link-time check is substituted by a runtime check).This change makes the necessary adjustment in the movrel macro, where it is
needed when compiling with -fsanitize=hwaddress.Signed-off-by : Peter Collingbourne <pcc@google.com>
Signed-off-by : Martin Storsjö <martin@martin.st>