
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (74)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (9611)
-
How can I generate a HTTP/rtmp output(URL) using ffmpeg/OBS and use that URL to play on a media playback device ?
29 février 2020, par PallavI tried using ffmpeg -i inputsource http://IP/live and even tried modifying win.conf file in my nginx folder by pushing rtmp ://IP but when i use either http or rtmp URL in media playback device, I keep getting errors.
-
how does decoder handle media packet lose/out of order/repeat ?
20 mai 2021, par woderthis might not be a good question, because it is big, but sincerely, I want to get the overall knowledge of Quality guarantee of video communication:


we know it media packet will
lose
orout of order
orrepeat
in network realtime communication :

In transport layer, assume that we use rtp to transport media and rtcp to control and feedback ; we can use a buffer to save rtp packets, so we can reorder packets by rtp sequence to solve problem
out of order
, and filter repeat packets to solverepeat
, use rtcp packet to tell the sender that I have lost rtp packet of sequence xxx to solvelose
;

But I have a lot of confusions on decode layer, assume that we have got media packets now and start decoding packets :


Question 1 : We know what if we lose a
I frame
, the subsequentP/B frames
will fail to decode, but what will hapen if we lose aP/B frame
? In h.264, there areinter-predict
, what if the lostP/B frame
was referred by subsequent frames, does subsequent frames will totally fail to decode ? Or just theinter-predict
macroblocks of subsequent frames will fail to decode whileintra-predict
macroblocks can be decoded then the decoder still can generate a broken frame to us ?

Question 2 : one frame might be consisted of multiple packets, what if we lose a packet, does this frame will totally fail to decode ? Or we can get a broken frame ?


Question 3 : Do media decoders like x264/openh264 will handle packets repeat and out of order ?


-
How to get live stream media from URI with RTMPS protocal
19 mai 2021, par user974335My app want to playback video from an URI live stream with RTMPS protocal. I used FFmpegInteropX (https://github.com/ffmpeginteropx/FFmpegInteropX) to get media source.


var uri = "rtmps ://xx.xx.xx.xx:443/live/dbjl" ;
FFmpegInteropMSS MediaSource = FFmpegInteropMSS.CreateFFmpegInteropMSSFromUri(uri, true, true, new PropertySet()) ;


But MediaSource return null.
How can I get it without null object.
Important : Must use RTMPS protocal, with RTMP then can get ok