
Recherche avancée
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (11206)
-
ffmpeg with multiple live inputs [closed]
9 juin 2013, par maddaniowe are trying to get ffmpeg to combine multiple live streams into one. In principle we got it to work by mosaicing the streams like so :
ffmpeg -rtsp_transport tcp -r 25 -i rtsp ://root:password@192.168.178.91:554/axis-media/media.amp \
-rtsp_transport tcp -r 25 -i rtsp ://root:password@192.168.178.92:554/axis-media/media.amp \
-filter_complex "[0:0]pad=iw*2:ih[a] ;[a][1:0]overlay=w" ...the problem though is that ffmpeg seems to start the input streams at significantly different times, so that there is about a 1 second shift between the streams, that remains throughout. Now we do have correct time stamps (pts) on both streams. Can we somehow tell ffmpeg to respect those and use them to align the streams correctly ?
-
FFMPEG How to apply subtitles [ass] on a live video stream
19 août 2014, par LewisouI am going to develop a camera recording application.
One of the feature is to apply subtitles while recording. Users can key in subtitles on the camera preview screen when the camera is recording.
I know I can apply the subtitles after the record is finished by running :
ffmpeg -i ./file.mp4 -c:v libx264 -c:a copy -vf "ass=t.ass" out.mp4
but which takes a very long time. So it will be better to do it on the fly (while recording a video).
Notice : the subtitle itself is also a live-stream.
Any one help ?
-
ffmpeg - Recording live stream
16 novembre 2016, par arpakI try to record 59 minutes from live hls(m3u8) link
ffmpeg -i http://example.com/video.m3u8 -t 3420 -c copy -y -hls_playlist_type vod /var/www/html/recording/rec1.m3u8
So it works But if there is a network problem with input link for few seconds it stop the recording.
Is there a way to make the ffmpeg wait for input link and then contiue recording without killing the ffmpeg
so i read about timeout but dont know exactly how to make it.
so maybe ffmpeg can wait for input link and then continue to record after it is available or maybe display image when first input is down, so whatever solution is acceptable just not to kill ffmpeg if input source is down