
Recherche avancée
Autres articles (101)
-
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 -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (10137)
-
FATE Ends the Mac
8 juin 2010, par Multimedia Mike — FATE ServerDid you know Mac OS X can even blue-screen ? To be fair, it doesn’t actually present a blue screen. But when Mac OS X encounters a kernel panic, it looks like this :
True to form, Mac just has to be prettier and glossier than other operating systems, even in the area of system crashes.
The reason I bring this up is that the FATE system is bringing down my Mac. My Mac Mini is reliably dying every single time I try to execute my FATE client Python script. Maybe the weather is getting too warm.
Update, 2010-6-8 : Following advice in the comments, I tried to run Memtest86 on the Mac Mini in question. I couldn’t get the machine to boot the CD I made. As an alternative, I turned the machine off and let it rest for a night. In the morning, I turned it on and ran the FATE client script. It’s working for now.
-
libavcodec/mips : Fix specification of instruction name
28 mai 2021, par Jin Bolibavcodec/mips : Fix specification of instruction name
1.'xor,or,and' to 'pxor,por,pand'. In the case of operating FPR,
gcc supports both of them, clang only supports the second type.
2.'dsrl,srl' to 'ssrld,ssrlw'. In the case of operating FPR, gcc
supports both of them, clang only supports the second type.Signed-off-by : Jin Bo <jinbo@loongson.cn>
Reviewed-by : yinshiyou-hf@loongson.cn
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>- [DH] libavcodec/mips/blockdsp_mmi.c
- [DH] libavcodec/mips/h264chroma_mmi.c
- [DH] libavcodec/mips/h264dsp_mmi.c
- [DH] libavcodec/mips/h264pred_mmi.c
- [DH] libavcodec/mips/h264qpel_mmi.c
- [DH] libavcodec/mips/hevcdsp_mmi.c
- [DH] libavcodec/mips/hpeldsp_mmi.c
- [DH] libavcodec/mips/idctdsp_mmi.c
- [DH] libavcodec/mips/mpegvideo_mmi.c
- [DH] libavcodec/mips/pixblockdsp_mmi.c
- [DH] libavcodec/mips/simple_idct_mmi.c
- [DH] libavcodec/mips/vc1dsp_mmi.c
- [DH] libavcodec/mips/vp3dsp_idct_mmi.c
- [DH] libavcodec/mips/vp8dsp_mmi.c
- [DH] libavcodec/mips/vp9_mc_mmi.c
- [DH] libavcodec/mips/wmv2dsp_mmi.c
-
how to find video and audio stream times without the deprecated values ? libav 10.5
23 novembre 2014, par Narayana James EmeryAfter looking into the documentation, AVStream.pts has been deprecated. Before I was using this loop to try and get the video and audio time. it’s the same as whats in the api-example.c (which no longer works) :
if (audioStream_)
{
VideoTime = (double)videoStream_->pts.val*videoStream_->time_base.num/videoStream_->time_base.den;
do
{
AudioTime = (double)audioStream_->pts.val*audioStream_->time_base.num/audioStream_->time_base.den;
ret = WriteAudioFrame();
}
while (AudioTime < VideoTime && ret);
if (ret < 0)
return ret;
}what is the current alternative ? I haven’t been able to get anything to work as of yet and I’ve been searching for around 3 hours.