
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (30)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (5898)
-
Extract all video frames as images with FFMPEG
18 août 2024, par user780756I am trying to convert a MP4 video file into a series of jpg images (out-1.jpg, out-2.jpg etc.) using FFMPEG with,



mkdir frames
ffmpeg -i "%1" -r 1 frames/out-%03d.jpg




However I keep getting errors like,





[image2 @ 00000037f5a811a0] Could not open file :
 frames/out-C :\Applications\FFMPEG\toGIF.bat3d.jpg
 av_interleaved_write_frame() : Input/output error frame= 1 fps=0.0
 q=5.9 Lsize=N/A time=00:00:01.00 bitrate=N/A video:63kB audio:0kB
 subtitle:0kB other streams:0kB global headers:0kB muxing overhead :
 unknown Conversion failed !





If I take out the %03d part, the conversion works but it only outputs the first frame and the program stops with error.



How can I correctly extract all the frames of the video with FFMPEG ?


-
doc/ffmpeg : extend documentation for -dts_delta_threshold and -dts_error_threshold
11 février 2023, par Stefano Sabatinidoc/ffmpeg : extend documentation for -dts_delta_threshold and -dts_error_threshold
PR : https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8252
-
Looking for method to combine images to make a video through phonegap platform for android and ios
28 novembre 2012, par PatI'm looking to write an application that could combine images and then to form a video. I'm working with Phonegap framework to be available for use on Android and IOS.
My question is what sort of process is involved to achieve this ?
At this stage I've tried to read about ffmpeg, most of the questions existing on stackoverflow talk of having to get the source, compiling to make a series of libraries for use. With those libraries it needs to be tied in with the Android/IOS libraries ? (I notice there is an 'android.jar' with the project file in eclipse. Would it exist in there ?) Afterwards my confusion lies with how is this implemented into Phonegap. Develop a plugin ?
Just to add, libav according to wiki, has hardware accelerated H.264 decoding whilst using x.264 for encoding for Android. How does that work ? Is this something accessed from libav libraries and then have to compiled in within the android.jar ?
I may have confused terms in trying to describe what I do not know.
Any help would be appreciated.