
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (13319)
-
First x frames from a video
27 juin 2012, par DowI need to get the first x frames from a video (usually FLV) and turn it into a GIF. The idea is to use these GIFs as a short preview for the real thing.
At the moment, we're using ffmpeg and imagemagick to do that :
ffmpeg -y -i movie.flv -pix_fmt rgb32 -r fps extracted/%d.png
convert extracted/0.png ... extracted/50.png -delay 4 -loop 0 \
-set dispose Background -sample 256x256> preview.gifSo basically, first the frames are extracted, converted to PNG, then the PNGs are put together again into a GIF. There are a lot of unnecessary steps involved here.
Does anyone have any suggestions for speeding up this process ?
Thanks in advance !
-
ffmpeg filter in my own application
26 juin 2018, par user25571How can I use one of filters from ffmpeg library in my own application. In fact, I only wanna detect silence in my audio files and so I must use
af_silencedetect.c
file. This file is one of ffmpeg filters that can be utilized with-af silencesetect
command.Therefore my obvious question is : "What’s step-by-step procedure in using this file in my own application and which dependencies I must add to my MSVC project ?"
Your points are appreciated in advance ....
-
get the bit stream per frame from ffmpeg record
1er mai 2021, par Aung Myo HtutIs there any way to get the bitstream per frame captured by ffmpeg. I want to capture with the raspberry pi camera in real-time and get the bitstream of the frame encoded by H.264 like I frame and P frame from the bitstream of ffmpeg. Because I want to stream frame by frame from the camera node to the server. Thank you in advance.