
Recherche avancée
Autres articles (111)
-
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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 (6332)
-
How to encode and segment at the same time ?
18 octobre 2011, par lvreinyI want to implement HTTP streaming server, which is similar to this (http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/)
But, instead of segment the video file after it is completely converted by ffmpeg, I want to do encoding and segmenting at the same time (something like if the output stream from the encoder is sent to the segmenter immediately).Thanks
lvreiny
-
mplayer or ffmpeg to display video that is beeing pushed to the player ?
18 décembre 2020, par Sebastian HeynI am planning an application, where an outside video camera should be displayed using mplayer (or any other lightweight video player).


However, instead of connecting the mplayer to the camera server (ffmpeg or something), I want the camera to push the video to the player.


The camera will be on an unstable network, and it will be natted so I cannot access without using a VPN or ssh tunnel. Those tunnels will consume CPU power, bandwidth and connection establish time.


Ideally, the last received frame will be displayed, until the next frame is received, without closing the window.


Does anyone know a way to achieve this using existing software ? BTW : The camera will be connected to a raspberry or simillar.


-
ffmpeg-Create the video slideshow with effect ? [on hold]
1er octobre 2013, par Lily ShuklaI want to make video slide show with image using the ffmpeg.
i try the codeUsing a single image as an input
If you want to create a video out of just one image, this will do (output video duration is set to 30 seconds with -t 30) :
ffmpeg -loop 1 -i img.png -c:v libx264 -t 30 -pix_fmt yuv420p out.mp4
but sir it only showing the picture without any effect.
i want to add effect like we see in power point.
plz sie how to do it
ffmpeg-Create the video slideshow with effect ???