
Recherche avancée
Autres articles (54)
-
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 -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (9410)
-
Avoid corrupting diagnostic state with _Pragma changes.
4 novembre 2017, par Dale CurtisAvoid corrupting diagnostic state with _Pragma changes.
The macros for ICC and MSVC correctly push and pop the diagnostic
state of the compiler when disabling deprecation warnings. The
ones for clang/gcc should do the same. Without this, if a blanket
deprecation warning is applied to the code base it'll be flipped
back on incorrectly with FF_ENABLE_DEPRECATION_WARNINGS.Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
FFMPEG hls retry on 500
10 janvier 2019, par Gabb1995Sometimes the server returns 500 errors :
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a2800] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a2260] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a25c0] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a2380] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a2b60] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a2380] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0
[http @ 00000000045a2920] HTTP error 500 Internal Server Error
[hls,applehttp @ 0000000002683200] Failed to open segment of playlist 0Is it possible to make ffmpeg retry on 500s ?
Command im using is :ffmpeg -i /chunklist.m3u8 -c copy -bsf:a aac_adtstoasc %fileName%-%random%.mp4
-
libavutil : Enable the MSVC DLL symbol loading workaround in shared builds as well
8 août 2013, par Martin Storsjölibavutil : Enable the MSVC DLL symbol loading workaround in shared builds as well
This used to only be necessary in static builds (when using the
dynamically linked C runtime), since the _imp prefixed symbols do
exist when linking to the actual DLL. When building testprogs,
however, the current library (e.g. libavutil for some of the testprogs)
is linked statically.This fixes make fate on DLL builds when using the dynamically
linked C runtime.Signed-off-by : Martin Storsjö <martin@martin.st>