
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (79)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (...) -
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 (...)
Sur d’autres sites (11638)
-
doc/mailing-list-faq : user lists are subscribe only
24 juillet 2018, par Lou Logan -
Get the list of I-Frames in a video using Python
1er mars 2021, par Tina JI'm trying to get the list of indexes for all I-frames in a video in Python (and later save a portion of them as
JPEG
). Right now, I can traverse all frames usingFFProbe
in terminal, and see which one is I-frame :


ffprobe -select_streams v -show_frames -show_entries frame=pict_type -of csv 18s.mp4




which gives me something like this :



frame,I
frame,B
frame,P
frame,B
frame,P
frame,B




But how can I do that in Python (I'm in Windows) and get a list of all their indexes ?


-
Create an mp4 video from list of frames using ffmpeg
11 août 2018, par Yevgeni BurshteinI have an directory with images that looks like this :
frame0d.jpg
frame1d.jpg
frame2d.jpg
...
frame4297d.jpgI need to create mp4 file with 30 fps from them.
I’ve tried command :
ffmpeg -framerate 30 -i frame%04d.jpg video.mp4
But it fails with error :
[image2 @ 0000026fd7c5a000] Could find no file with path 'frame%04d.jpg' and index in the range 0-4
frame%04d.jpg: No such file or directoryThanks a lot !