
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (101)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (7210)
-
iPAD Streaming video to a ffmpeg server. front facing camera
6 décembre 2011, par IrishGringoThis is a video chat type program.
My project is to write a native ObjC app that will stream video from the front facing camera to a server. This server will format and relay to be sent to another location.
In a related question, I want to display video streaming from the server. The video server will probably be running ffmpeg for formating.
But this question is just asking advice for the iPAD project. I wanted to get comments about issues I need to be thinking about.This is my strategy :
I was thinking of using AVFoundation framework to stream from the cam to a URL server. I don't know if I will be formatting on the client or no, so some comment there would be interesting. http://developer.apple.com/library/mac/#documentation/AVFoundation/Reference/AVFoundationFramework/_index.htmlFor streaming the video, I was going to be using :
http://developer.apple.com/library/IOs/#documentation/AVFoundation/Reference/AVCaptureSession_Class/Reference/Reference.html#//apple_ref/occ/cl/AVCaptureSessionso if someone has some ideas/suggestions... extra code I can look at. I would appreciate it.
-
How to restrict ffmpeg to use only 50% of my CPU ?
21 septembre 2016, par zukesi m using ffmpeg for streaming my desktop over UDP but my problem is ffmpeg’s process always takes 100% cpu for the entire time it is running leaving no room other application , my question is how can i restrict ffmpeg’s process to take up only 50-60% of cpu ?
My cpu has single core
2 gb ram -
ffmpeg : process each image frame after capturing with x11grab
21 juin 2012, par cacheProgrammatic way to process each image frame right after capturing using x11grab in ffmpeg
For example, I have a program that captures screenshots from x display using command :
ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg
'-r 25' means there are 25 frames being captured in a second. And my question is how to process each frame(image) and decide whether I want to keep this frame or drop it right after each image is captured. I guess this should be done in C by adding some code in x11grab.c.