
Recherche avancée
Autres articles (34)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (3360)
-
Consent Mode v2 : Everything You Need to Know
7 mai 2024, par Alex — Analytics Tips -
Why does linking different MSVC Run-Time Libraries crash in release mode ?
9 septembre 2014, par UmNyobeI am using ffmpeg and Qt to build a small demo app.
- FFmpeg is built with
/MT
(crossbuild or built with visual 2010) - Qt is always built with
/MD
- My little example is always built with
/MD
When the application
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
av_gcd (75, 25);
return a.exec();
}
//note : following is av_gcd source in ffmpeg libs:
int64_t av_gcd(int64_t a, int64_t b)
{
if (b)
return av_gcd(b, a % b);
else
return a;
}is executed in release mode it crashes because it doesn’t see
av_gcd
as executable memory. The error is :First-chance exception at 0x0000000300905a4d in mylittleexample.exe :
0xC0000005 : Access violation at location 0x0000000300905a4d.=======================================
VERIFIER STOP 0000000000000650 : pid 0x1B9C : Attempt to execute code in
non-executable memory (first chance).0000000300905A4D : Address being accessed.
0000000300905A4D : Code
performing invalid access.
00000000009FF770 : Exception record. Use
.exr to display it.
00000000009FF280 : Context record. Use .cxr to
display it.=======================================
The address
0x0000000300905a4d
doesnt change regardless of the function in the library (ffmpeg in this case), or the compiler used for the executable (vs2010, vs2012) or a different machine.If I use the FFmpeg built with
/MD
and it works as one would expect.- I observe that the executable doesnt load the library when the
library is compiled with/MT
. Why is that ? - Furthermore, If the library is compiled with
/MT
and debug
information is enabled when the application is linked (/DEBUG
param to the linker) then the library is loaded and everything
execute correctly. Why ?
- FFmpeg is built with
-
avfilter/vf_tinterlace : Fix vf_tinterlace mode 6 (interlacex2)
16 mars 2014, par Jasper Tayloravfilter/vf_tinterlace : Fix vf_tinterlace mode 6 (interlacex2)
The purpose of this filter mode is to allow interlaced content to
display properly in interlaced video modes, as described in
http://forum.xbmc.org/showthread.php?tid=81834 and
https://github.com/mpv-player/mpv/issues/624#issuecomment-37685195 . The
filter doubles the video frame rate, but does not work properly because :
(1) it does not set the properties of the output stream to indicate the
doubled frame rate, and
(2) it does not set an appropriate PTS on the extra frames.
The attached patch fixes these problems by settling these values the
same way they are set in vf_yadif mode 1 (field) which also doubles the
frame rate.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>