
Recherche avancée
Autres articles (71)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (10711)
-
sbc : add raw demuxer for SBC
17 décembre 2017, par Aurelien Jacobs -
lavf : add WebVTT muxer.
12 juin 2013, par Matthew Heaneylavf : add WebVTT muxer.
This revision creates a WebVTT muxer, that outputs files having the
format described in the following specification : -
Using ffplay with RTSP and source-specific multicast
14 septembre 2022, par bigbrobrodyWe are trying to use ffplay to join a live video source in a network that uses IGMPv3 source-specific multicast.


If we use an SDP file this works fine and wireshark shows that ffplay correctly sends a source-specific multicast membership report.


However, when we try to join the same source using RTSP, ffplay seems to ignore the source-specific address contained in the SDP response to RTSP DESCRIBE and fails because it tries to join for any source. This is the command used :


ffplay -loglevel debug -rtsp_transport udp_multicast -protocol_whitelist rtp,udp,tcp -i rtsp://[username:password]@[ip address]/stream0


The SDP response as reported by ffplay includes :


a=source-filter: incl IN IP4 * [ssm ip address]


The only error reported by ffplay is :


Failed to parse interval end specification ''


Wireshark shows that ffplay is not performing an SSM join :


Membership Report / Join group [group IP address] for any sources


Further details in the screenshot below. Are we doing something wrong, is this a feature of ffplay or a potential bug ?


I note that libavformat/rtsp.h contains the comment /** The following are used only in SDP, not RTSP */ against code for sdp port, source-specific multicast addresses, etc. I’m not sure if that hints at our issue being because of a feature in ffmpeg.