Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

Sur d’autres sites (8332)

  • configure.ac : Don’t zap ’-g’ from $CFLAGS.

    30 novembre 2014, par Erik de Castro Lopo
    configure.ac : Don’t zap ’-g’ from $CFLAGS.
    

    The ’-g’ was in-correctly getting zapped from all CFLAGS expressions
    including eg :

    -mfloat-gprs=double (for powerpc e500) -> -mfloatprs=double.

    Reported-by : Gustavo Zacarias <gustavo@zacarias.com.ar>

    • [DH] configure.ac
  • Revision e22b12e304 : Added clamp of qindex to valid range The qindex for a segment was not clamped i

    22 février 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/common/vp9_quant_common.c



    Added clamp of qindex to valid range

    The qindex for a segment was not clamped in ABSDATA mode, which may
    cause invalid memory access if an ill-formed stream has a negative
    value in ABSDATA mode. This commit added clamp to make sure qindex
    for a segment always fall into valid range.

    Change-Id : I0a74d00f4ef40aec7edaeca1d03c8645e23ab08c

  • Why opencv can open video but failed to retrieve frame from it ?

    20 février 2013, par Greper

    I build opencv with ffmpeg support and this is a snippet of my code to read a video and iterate through the frames.

    if (argc != 3) {
       std::cout&lt;&lt;"Usage: exe input_video_filename skip_frames \n"&lt; scores;
    while(true)
    {
       if(!**cap.retrieve(frame)**)
       {
           std::cout&lt;&lt;"error retrieve frame"&lt;code>

    The program succeed to read the video at line cap.open(video_fn) but fail to retrieve frame from VideoCapture at the line if(!cap.retrieve(frame)). I tried with mp4 and avi but it always fails.Does anyone encountered similar problem ? How to solve it ? Many thanks !