
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (67)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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" ; -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (6581)
-
How to continuously extract video frames from streaming RTMP using avconv / ffmpeg ?
5 février 2014, par mvbl fstWe're dealing with streaming video on RTMP and my goal is to extract frames from the stream at a given interval, e.g. every 1 second.
Currently I run a command in a loop, which takes a frame and exports it as base64 JPEG :
avconv -i <url> -y -f image2 -ss 3 -vcodec mjpeg -vframes 1 -s sqcif /dev/stdout 2>/dev/null | base64 -w 0
</url>But each of these processes is long (takes a few seconds — which adds even more delay on streaming video that's not real time already). I am wondering if there is a way to make avconv or ffmpeg to extract frames at an interval (in seconds or frames) and either save as a file or dump to stdout.
I would really appreciate your help !
-
Best approach to get RTSP streaming into web browser from IP Camera ?
21 octobre 2023, par WhoamiIs it possible to get the RTSP Streaming data into the web browser ?



Below are some of my findings. Kindly correct me if I am wrong ?



- 

-
Only Mac OS, and Safari supports RTSP Live Streaming.
-
HTML 5 video does not support RTSP.
-
I can use the VLC plugin, but I don't want to use that.









Possibility of mixing ffmpeg and websocket ?



Assume my IP camera is connected with Ethernet.



In the client machine :



- 

- I run ffmpeg to get the data from server (ie : IP)
- Client machine runs websocket.
- Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of any format (for example : yuv).
- Now, i have to send this image to browser through websocket.











Question :



- 

- It is the right approach ?
- How can I get the decoded image from ffmpeg into the browser ?







I might be wrong in different places. Kindly provide input.


-
-
Best approach to get RTSP streaming into web browser from IP Camera ?
12 mars 2016, par WhoamiIs it possible to get the RTSP Streaming data into the web browser ?
Below are some of my findings. Kindly correct me if I am wrong ?
-
Only Mac OS, and Safari supports RTSP Live Streaming.
-
HTML 5 video does not support RTSP.
-
I can use the VLC plugin, but I don’t want to use that.
Possibility of mixing ffmpeg and websocket ?
Assume my IP camera is connected with Ethernet.
In the client machine :
- I run ffmpeg to get the data from server (ie : IP)
- Client machine runs websocket.
- Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of any format (for example : yuv).
- Now, i have to send this image to browser through websocket.
Question :
- It is the right approach ?
- How can I get the decoded image from ffmpeg into the browser ?
I might be wrong in different places. Kindly provide input.
-