
Recherche avancée
Autres articles (105)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
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 (...) -
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 ;
Sur d’autres sites (15641)
-
FFmpeg library does not want to images into video
27 avril 2021, par ArtisticBytesI am trying to create image folder with 600 images with file names :
animation_010000.jpg
toanimation_010600.jpg
(soanimation_010000.jpg
,animation_010001.jpg
,animation_010002.jpg
, and all the way toanimation_010600.jpg
) into a video file, but somehow FFmpeg does not see the path right. What I am doing wrong ?
I tried 4 different samples still the same error in the input path.

ffmpeg -r 60 -s 1920x1080 -i "animation_010%03d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



or


ffmpeg -r 60 -s 1920x1080 -i "animation_010%3d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



or


ffmpeg -r 60 -s 1920x1080 -i "animation_%06d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



or


ffmpeg -r 60 -s 1920x1080 -i "animation_%6d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



Keep in mind that input path of the folder is
F:/AnimationImages/
but I am not using the full path address instead of I installed all the FFmpeg library into the folder with the images. Also, keep in mind that it converts a single image file as input into a video file as output without any errors. I am pretty sure that answer in input path formatting - so what I am doing wrong ? My OS is Windows 10 and I am usingcmd.exe
with administrator rights. Thanks guys.

-
x86inc : Clear __SECT__
26 mai 2015, par Timothy Gux86inc : Clear __SECT__
This commit silences warning(s) like :
libavcodec/x86/fft.asm:93 : warning : section flags ignored on section
redeclarationThe cause of this warning is that because `struc` and `endstruc` attempts to
revert to the previous section state [1]. The section state is stored in the
macro __SECT__, defined by x86inc.asm to be `.note.GNU-stack ...`, through the
`SECTION` directive [2]. Thus, the `.note.GNU-stack` section is defined twice
(once in x86inc.asm, once during `endstruc`), causing the warning.That is the first part of the commit : using the primitive `[section]` format
for .note.GNU-stack etc., which does not update `__SECT__` [2].That fixes only half of the problem. Even without any `SECTION` directives,
`__SECT__` is predefined as `.text`, which conflicting with the later
`SECTION_TEXT` (which expands to `.text align=16`).[1] : http://www.nasm.us/doc/nasmdoc6.html#section-6.4
[2] : http://www.nasm.us/doc/nasmdoc6.html#section-6.3Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Encoded images into H264 video are skipped and/or missing ?
25 juillet 2013, par JonaI'm trying to encode images into an H264 MP4 video. The issues I'm having is that some of the images are skipped or at the end of the video simply missing. I need the video to play every single image I encode since it is an animation.
Any help setting the encoder properly would be greatly appreciated !
Encoder settings :
AVCodecContext *c;
...
c->codec_id = AV_CODEC_ID_H264;
c->bit_rate = mOutputWidth*mOutputHeight*4;//400000;
/* Resolution must be a multiple of two. */
c->width = mOutputWidth;
c->height = mOutputHeight;
/* timebase: This is the fundamental unit of time (in seconds) in terms
* of which frame timestamps are represented. For fixed-fps content,
* timebase should be 1/framerate and timestamp increments should be
* identical to 1. */
c->time_base.den = mFps;
c->time_base.num = 1;
c->gop_size = 12; /* emit one intra frame every twelve frames at most */
c->pix_fmt = AV_PIX_FMT_YUV420P;
...
av_dict_set(&pOptions, "preset", "medium", 0);
av_dict_set(&pOptions, "tune", "animation", 0);
/* open the codec */
ret = avcodec_open2(c, codec, &pOptions);
if (ret < 0) {
LOGE("Could not open video codec: %s", av_err2str(ret));
return -1;
}Update 07/24/13 :
I was able to achieve a better video by setting thegop_size=FPS
and writing the last video frame repeatedlyFPS+1
times seemed to resolve all issues. To me it seems odd to do that but might be something standard in the video encoding world ? Any tips feedback about this ?