
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (53)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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. -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (6315)
-
Is it possible to use FFMPEG for h264 live decoding ?
9 avril 2018, par elpha01I’m receiving in my C#/.NET application a H264 stream as byte arrays.
Firstly I receive the SPS and PPS and then all NAL_units.I haven’t find good tools to make h264 decoding so I’m currently using FFMPEG for testing with this article as help : A Simple c# Wrapper for ffMpeg
For the moment I write the sps and the pps in a provisory .264 file with the first NAL unit then I decode it with FFMPEG. It works for the first frame but I don’t know how I can decode the following frame. I tried to rewrite the SPS and PPS in a second file with the second NAL unit without the first one but it doesn’t work.
How can I use FFMPEG to decode a live h264 stream when receiving NAL units.
Thank you
-
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 ?