
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (54)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (9192)
-
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.


-
-
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 !
-
FFmpeg streaming
24 mars 2023, par haysoI am using ffmpeg for streaming. But when i start watch it the stream always stuck for the first 30 40s after that is good.
I am trying to achieve fast and smooth starting


The command i use
ffmpeg -y -nostdin -hide_banner -err_detect ignore_err -loglevel warning -start_at_zero -copyts -vsync 0 -correct_ts_overflow 0 -avoid_negative_ts disabled -max_interleave_delta 0 -probesize 1000000 -analyzeduration 10000000 -progress 903dd5e68006.txt -i "http://example.com" -vcodec copy -acodec copy -sn -f hls -hls_segment_type mpegts -hls_init_time 2 -hls_time 10 -hls_allow_cache 1 -hls_start_number_source epoch -hls_ts_options "mpegts_flags=+initial_discontinuity:mpegts_copyts=1" -hls_delete_threshold 5 -hls_list_size 5 -hls_flags delete_segments+discont_start+omit_endlist -hls_segment_filename /storage/903dd5e6800


i tried to +- analyzeduration, probesize and hls timing, but without success.
The source that i used is stable.