
Recherche avancée
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (12334)
-
Merge commit ’fa57059079190242517701120cfdccad93c866da’
29 juin 2016, par Clément Bœsch -
Merge commit ’7f0e81db3c4ee6f8ce15058bafa72ce928a89f3f’
18 janvier 2014, par Michael NiedermayerMerge commit ’7f0e81db3c4ee6f8ce15058bafa72ce928a89f3f’
* commit ’7f0e81db3c4ee6f8ce15058bafa72ce928a89f3f’ :
h264 : limit allowed pred modes in ff_h264_check_intra_pred_mode() to 3Conflicts :
libavcodec/h264.cSee : d6a33f5d20b6ef2eae2cbb959b001cb125a564b7
See : 2005fddcbb4e18e8f7c34326e40609e4a2d83c31
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
What these FFmpeg APNG encoder prediction methods mean ?
14 septembre 2021, par Nicke ManarinBy typing
ffmpeg -h encoder=apng
, I get this :

APNG encoder AVOptions:
 -dpi <int> E..V..... Set image resolution (in dots per inch) (from 0 to 65536) (default 0)
 -dpm <int> E..V..... Set image resolution (in dots per meter) (from 0 to 65536) (default 0)
 -pred <int> E..V..... Prediction method (from 0 to 5) (default none)
 none E..V.....
 sub E..V.....
 up E..V.....
 avg E..V.....
 paeth E..V.....
 mixed E..V.....
</int></int></int>


What are the differences among these prediction methods ?


I could not find any documentation on ffmpeg.org or anywhere else.