
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (74)
-
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 (13369)
-
How to access YUV planes from ratecontrol in x264 encoder
31 décembre 2018, par shuchI need to get access to the YUV planes in x264 encoder on the encoding stage. I understand how to do it on the input stage (in raw.c), but I don’t succeed to do it in encoder.c or ratecontrol.c.
Thanks
-
ffmpeg - Access elements of AVCodecContext
9 avril 2018, par HamedI want to access some members of my
AVCodecContext *av_ctx
in my program. It is fine when I compile it in 32bit version, But when I change it to 64bit this elements act like they been shifted.For example, I want to get
av_ctx->coded_width
andav_ctx->coded_height
(sometimes they are different fromav_ctx->width
andav_ctx->height
) and store them in some variables. Now when I debug this program in 32bit version it’s Ok, but in 64bit version this values are wrong and when I check my structure I can see the next two elements (av_ctx->gop_size
andav_ctx->pix_fmt
) has the values that I want.I checked
AVCodecContext
declaration onavcodec.h
and it (in comments above structure declaration) says :Please use AVOptions (av_opt* / av_set/get*()) to access these fields from user applications.
I think this might be the right way to get these elements but I don’t know what is this AVOptions, I searched it but couldn’t find what is it exactly and how can I use it.
-
h264_redundant_pps : Fix looping over an access unit's units
20 juin 2019, par Andreas Rheinhardth264_redundant_pps : Fix looping over an access unit's units
When looping over an access unit's units in positive direction and
deleting some of them, one needs to make sure that a unit that is at
the position of a unit that just got deleted gets checked, too.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>