
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (103)
-
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 (...) -
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" (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (5825)
-
How to compile ffmpeg.dll [closed]
30 mai 2024, par jdauthreI would like to compile a ffmpeg.dll dynamic link library which includes the full range of codecs, but when I search for guides I can only find resouces to create ffmpeg.exe. Can anyone point to any resources. Thank you in advance.


-
How to generate video from images. Proper way
2 mai 2021, par Ec7ipseGood day ! Im really curious how apps like (Unfold, or any instagram stories generation) work ? How they generate video ?


I did some research on the internet, and found some info. But the question.


- 

- Is it good to use some image processing libraries like(pguimage) to generate sequence of images and then use ffmpeg or another libraries to encode this sequence to video. Or maybe you know the proper method how to make it.
- How actually blender or after effect work ? Do they generate sequence of frames and then put them into ffmpeg or they use another technique ? I've stuck. Maybe you can give me some links ?






I tried this on server using (c++) (CImage + ffmpeg) but it was slow. (2 min video was rendered within 8 min). CIMG library uses only cpu. So the main question, is it good to do like this : generate sequence of images and put them into ffmpeg or smt.


Maybe you have some links.


-
Tell libavcodec/ffmpeg to drop frame
7 mars 2013, par chouquetteI'm building an app in which I create a video.
Problem is, sometime (well... most of the time) the frame acquisition process isn't quick enough.What I'm currently doing is to skip the current frame acquisition if I'm late, however FFMPEG/libavcodec considers every frame I pass to it as the next frame in line, so If I drop 1 out of 2 frames, a 20seconds video will only last 10. More problems come in as soon as I add sound, since sound processing is way faster...
What I'd like would be to tell FFMPEG : "last frame should last twice longer that originally intended", or anything that could allow me to process in real time.
I tried to stack the frames at a point, but this ends up killing all my memory (I also tried to 'stack' my frames in the hard drive, which was way to slow, as I expected)
I guess I'll have to work with the pts manually, but all my attempts have failed, and reading some other apps code which use ffmpeg, such as VLC, wasn't of a great help... so any advice would be much appreciated !
Thanks a lot in advance !