
Recherche avancée
Autres articles (68)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10756)
-
FFMPEG : Sync problem between audio and video on Live Stream
20 mai 2022, par zeitnotI am using NGINX RTMP as an RTMP server and FFMPEG as a client for live stream. When I connect to the RTMP server with the following command, I get an output file that contains slow motion for almost 5 seconds. But the sound is OK.


ffmpeg -re -i rtmp://somertmp -c copy -f flv rtmp://a.rtmp.youtube.com/live2/sometoken -f flv output.mp4



As the preceding example shows, I deliver the stream to youtube and at the same time, I get a copy. Youtube does not show slow motions but when I open the file with
ffplay
I can see the problematic frames.

I want to fix these slow motions and make it synced with audio with ffmpeg or if not possible I want to tell ffmpeg to cut those slow frames along with audio channel so video and audio would be synced.


For days, I am trying to find a solution for this problem but unfortunately, I could not. Any help will be appreciated.


-
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.


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