
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (111)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
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 (14220)
-
ffplay, rtsp and tcp transport protocol
27 juillet 2022, par Denis GottardelloI have a problem on connect to a rtsp camera using
ffplay
.
The camera is under a router that permits only the TCP protocol.
I can watch the camera usingffplay
only if I am in the same network of the camera.
So, when I am out, using this command line

ffplay rtsp://address:554/onvif1



or this


ffplay -rtsp_transport tcp rtsp://address:554/onvif1



I cannot watch the camera.
This is the output of ffplay (the latest).


[rtsp @ 059ee680] Nonmatching transport in server reply 0B f=0/0
rtsp://address:554:/onvif1: Invalid data found when processing input



Trying with VLC and I can watch the camera without any problem, both when I am in the same network or when I am out. The VLC output says that VLC uses TCP.
Has someone got a suggestion ?


-
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 ?
-
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 !