
Recherche avancée
Autres articles (42)
-
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 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 ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7783)
-
vf_psnr : fix rgb channel order mixup in final log message.
11 juillet 2015, par Ronald S. Bultje -
Revision 43a34557f1 : configure : append —extra-cflags to final set previously any flags added while
27 août 2015, par James ZernChanged Paths :
Modify /build/make/configure.sh
Modify /configure
configure : append —extra-cflags to final setpreviously any flags added while setting up the toolchain would
override the user selections ; environment variables could be treated
similarlyChange-Id : Ibfcc644137d8e579af554d19a38d4020019a7a34
-
Changing YUV values of AVFrames
31 janvier 2012, par KageI'm trying to apply an effect to a video by altering the YUV values using FFMpeg programmatically in C.
Let's say I want to increase the luminescence of each pixel of each frame by 10.
At the moment I can open a video, get the video stream, find a frame, decode the frame, alter the YUV values of the AvFrame->data, encode the frame, and save the frame to be played back.
When I play back the video, the first frame looks as expected, but the next is even brighter and the one after that is even brighter, and each frame seems to be having more and more added to the Y values instead of just 10.
I tried changing the code so instead of altering the pixels for each frame, it just alters the first AVFrame's data. However when I play the video back, it is not only the first frame that has been altered, but like the first 30 or so frames.
Why are the other frames effected when I only change the AVFrame->data of the first frame ?