
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (63)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7927)
-
Optimizing Painting video encoding in Android
26 octobre 2013, par coder000001I want to create live painting video as export feature for a painting application.
I can create a video with a series of images, with the use of a library ( FFMPEG or MediaCodec). But, this would require too much processing power to compare the images and encode the video.
While drawing, I know exactly which pixels are changed. So, I can save lot of processing if I can pass this info to FFMPEG, instead of having the FFMPEG figure this out from the images.
Is there away to efficiently encode the video for this purpose ?
-
ffmpeg switch to "ping pong" the resulting frames [duplicate]
18 février 2021, par Some1ElseI am using ffmpeg to convert a series of bitmaps into an AVI file, using this syntax


ffmpeg.exe -framerate 60 -start_number 1 -i BMP%05d.BMP -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y -vf format=yuv420p output.AVI



which works fine.


But now I want to "ping pong" the output. ie create an AVI twice as long, but the second half is the same frames in reverse. So the movie plays forward, then in reverse.


I don't see any options/switches for this in the documentation. Is it possible ?


Thanks for any tips.


-
FFMPEG video (mp4) to image sequence with the time in the filename [closed]
7 juin 2013, par Ewald Bosi have a question and can't find the answer perhaps you can help ?
I am using FFMPEG (windows enviroment) and convert a video (mp4) to a series of images based on scene detection (i-frames) and add the timecode inside the image (burn) like this ;
ffmpeg -i video.mp4 -vf "drawtext=fontfile=trebucbd.ttf: timecode='00\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000000@1, select=eq(pict_type\,I)" -vsync 0 -an iframes/%06d.jpg
All this works perfect but i also would like to add the timecode in the filename, so instead of naming it 000001.jpg, 000002.jpg i would like to have 00.00.00.01.jpg, 00.00.00.17.jpg and thoughts about this ?