
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" ; -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (10738)
-
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.




-
How to make a thread with libavcodec library ?
12 janvier 2014, par Blue SkyHow can I make a thread using libavcodec (ffmpeg library) ? I want to call
avformat_open_input
within a separate thread to check for an available video stream at a specific UDP address. The reason for this is thatavformat_open_input
checks the UDP address continuously in a loop until a video data comes available, and during this period the program looks like halted. Any idea ? Thanks ! -
Unable to play RTSP URL with ffplay but able to play it with VLC
15 février 2018, par DimsI am trying to see my IP camera with VLC and see it with VLC with address
rtsp://192.168.1.168
Unfortunately, when I enter the same address into ffplay
ffplay rtsp://192.168.1.168
I get multiple errors like
UDP timeout, retrying with TCP 0B f=0/0
method PAUSE failed: 455 Method Not Valid In This Statewhy and how to overcome ?