
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (32)
-
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 -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5067)
-
Live Video Stream support for android ?
9 juin 2014, par Mike ReadI have a live video feed in m3u8 format and works great in iphone android doesnt support it.
Im planing to convert the feed using ffmpeg and just wondering what the best format/codec/protocol works best with the lowest version of android possible.thanks so much !
-
html process video on remote host and display live preview of processing
12 juillet 2016, par CodeDezkI need to create a website where user able to upload the video to a server(a Linux PC with some video processing lib installed, like ffmpeg, opencv) and select the processing require and start it. And the user should able to see the processing of the video on live with rectangle draw on each frame.
Like if user need to draw a rectangle on every frame, then upon click start the web page should start streaming the processing video on live.
Is there anything exists to accomplish such an application. Any suggestion or tips ?
-
Audio-Video Delay When Fetching From NGINX-RTMP live-Mode
17 novembre 2020, par SuuuehgiWe get an RTSP-stream and mix it together with line-in over pulseaudio.


This looks something like :


ffmpeg \
 -use_wallclock_as_timestamps 1 -fflags +genpts \
 -max_delay 2000000 -thread_queue_size 1024 \
 -i "rtsp://url" \
 -use_wallclock_as_timestamps 1 -fflags +genpts \
 -max_delay 2000000 -thread_queue_size 1024 \
 -itsoffset <offset> \
 -f pulse \
 [...]
</offset>


So far so good. This kind of works when fetching the rtsp stream directly.


As soon as we route the RTSP-stream through an NGINX-RTMP loopback
(live mode) beforehand,


ffmpeg -i rtsp://url -c copy -an -f flv rtmp://localhost/live

ffmpeg \
 -use_wallclock_as_timestamps 1 -fflags +genpts \
 -max_delay 2000000 -thread_queue_size 1024 \
 -i "rtmp://localhost/live" \
 -use_wallclock_as_timestamps 1 -fflags +genpts \
 -max_delay 2000000 -thread_queue_size 1024 \
 -itsoffset <offset> \
 -f pulse \
 [...]
</offset>


we get a delay of close to 5 s within the output (audio-video offset).


Whereat the configuration of rtmp ://localhost/live is :


application live {
 live on;
 sync 10ms;
 record off;
 allow publish 127.0.0.1;
 deny publish all;
 }



What causes the delay and how to get rid of it ?


The RTMP-server itself does not cause a noticeable delay, I hence
assume this to be a timestamp issue but my wisdom ends with the above
written options.