Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • List of compatible distributions

    26 avril 2011, par

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (7886)

  • Where is the initialization of motion vector in source code ?

    3 novembre 2019, par Alex

    In IMPROVED RATE CONTROL AND MOTION ESTIMATION FOR H.264 ENCODER this paper introduce initialize with extra motion vector. I would like to try some other initialization methods, but I can not find where the initialization code realized.

    



    In encoder/me.c I can only find the function which uses mvc. But for where mv is initialized, I am get confused with the code.

    


  • Anomalie #3851 (Nouveau) : Référencer code.plugins.spip.net

    31 octobre 2016, par jluc -

    À l’heure actuelle le site http://code.plugins.spip.net présente la documentation phpdoc des plugins listés dans le fichier autodoc.txt à la racine de la zone. La présentation est belle et l’actualisation est transparente et automatique.

    À ma connaissance http://code.plugins.spip.net est actuellement référencé sur irc seulement, occasionnellement.

    Il serait bien de mieux référencer cet outil en le faisant figurer dans la boussole et depuis code.spip.net et/ou depuis plugins.spip.net

  • Linking to libx264 library from c code Ubuntu

    30 janvier 2012, par Martin Conaghan

    I'm trying to write a small C application which uses the x264 API, and I'm having problems compiling the code with a link to the x264 libaray.

    In the /project/ directory there are two sub-folders :
    /project/mycode/ and
    /project/x264-snapshot-20120120-2245.

    I have installed x264 in the latter subdirectory using ./configure and then 'make'. As such the library I think I want to link to is /project/x264-snapshot-20120120-2245/libx264.a

    In /project/mycode/ I have a single source code file (prototype.c), which has the following imports :

    #include
    #include
    #include "../x264-snapshot-20120120-2245/x264_config.h"
    #include "../x264-snapshot-20120120-2245/x264.h"

    As expected, if I try to compile without linking to the x264 library, I get an error :

    /project/mycode: gcc -o prototype prototype.c
    /tmp/cc5NwRTp.o: In function `main':
    prototype.c:(.text+0x6c): undefined reference to `x264_param_default_preset'
    prototype.c:(.text+0xf6): undefined reference to `x264_param_apply_profile'
    collect2: ld returned 1 exit status

    So I try to link the library I mentioned above, but it isn't found :

    /project/mycode: gcc -o prototype prototype.c -I../x264-snapshot-20120120-2245/ -llibx264.a
    /usr/bin/ld: cannot find -llibx264.a
    collect2: ld returned 1 exit status

    I've tried a few variations, like :

    gcc -o prototype prototype.c -I../x264-snapshot-20120120-2245/ -l ../x264-snapshot-20120120-2245/libx264.a
    gcc -o prototype prototype.c -I../x264-snapshot-20120120-2245/ -llibx264
    gcc -I ../x264-snapshot-20120120-2245/ -llibx264.a -o prototype prototype.c

    As is probably obvious by now, I'm fairly new to this, so I'm hoping there is an easy solution