
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (87)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (7589)
-
Online timelapse creation with ffmpeg
27 mai 2016, par MichaelI would like to create a timelapse using a command line tool like ffmpeg. The usual way is to prepare a series of images first. In my case it is not possible, because discrete images would take too much space, and there is nearly no difference between subsequent images so they compress extremely well as a video.
So I’m looking for a way to create a video file, keep it opened and then just append successive images to it without intermediate files.
-
Compile set of JEPGs into MP4 with ffmpeg by Timeformat
2 mars 2016, par Matthew DeloughryIf I have a series of
.jpg
files that have the following name formatmap-T{HH}_{mm}_{ss}.jpg
how can I get FFMPEG to compile them into a.mp4
?I am currently running the following command
ffmpeg -pattern_type glob -i '/2016-03-02/*.jpg' -framerate 4 -c:v libx264 /2016-03-02/day_animation.mp4 -y
This completes without an error. However when I come to view the video file it seems to have only grabbed one file, and compiled that into a
.mp4
file.I can’t really change the naming of the
.jpg
files as another system require this format. -
Raw H264 to JPEG, in C#
25 mars 2016, par tbradshawI get a stream of frames, an initial SPS and PPS h264 data packet and then packets for the I and P frames.
Using c# .NET I want to convert into a series of JPEGs ? Has anyone done this ?
I have tried AForge.NET FFMpeg wrapper, but can only go from MP4 file to JPEGs ?
Also looked at DirectShow.I can’t seem to find an examples that even come close to doing this ?
Thanks