
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (54)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (11382)
-
ffmpeg live transcoding faster alternative ?
23 novembre 2018, par ppoeasIs there any opensource alternative to
ffmpeg
andVLC
to live video transcoding from HTTP streaming to RTMP or other ?ffmpeg
caused my CPU (AMD 4.0GHZ 8Core) is loaded 100% with only 8 SD streams.Thanks for help.
PS.
I think I don’t need to transcode my video, I can also stream with something like http video proxy. Source is in HTTP streaming format, also I am under Linux. -
ffmpeg live transcoding faster alternative ?
6 août 2014, par ppoeasIs there any opensource alternative to
ffmpeg
andVLC
to live video transcoding from HTTP streaming to RTMP or other ?ffmpeg
caused my CPU (AMD 4.0GHZ 8Core) is loaded 100% with only 8 SD streams.Thanks for help.
PS.
I think I don’t need to transcode my video, I can also stream with something like http video proxy. Source is in HTTP streaming format, also I am under Linux. -
FFMPEG live buffer stream recording
1er juin 2017, par KencanaI am trying to record a live stream video by feeding buffer data to ffmpeg. I would like ffmpeg to keep recording the last buffer stream, when it’s idling (no buffer data being passed). So I tried to use the
-stream-loop -1
options, but doesn’t seems to work. Here is the snippets of the ffmpeg commandffmpeg -y -f rawvideo -video_size 1024x768 -re -fflags +genpts -stream_loop -1 -i - -vcodec libx264 -pix_fmt yuv420p output.mp4
Any idea on this ?