Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (104)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le 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 (10473)

  • libavutil : Add av_clip_intp2

    20 février 2015, par Peter Meerwald
    libavutil : Add av_clip_intp2
    

    there already is a function, av_clip_uintp2() that clips a signed integer
    to an unsigned power-of-two range, i.e. 0,2^p-1

    this patch adds a function av_clip_intp2() that clips a signed integer
    to a signed power-of-two range, i.e. -(2^p),(2^p-1)

    the new function can be used as a special case for av_clip(), e.g.
    av_clip(x, -8192, 8191) can be rewritten as av_clip_intp2(x, 13)

    there are ARM instructions, usat and ssat resp., which map nicely to these
    functions (see next patch)

    Signed-off-by : Peter Meerwald <pmeerw@pmeerw.net>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/common.h
  • how to use x264 dll in another project

    7 février 2024, par Hadi Rasekh

    I want to use x264 in my project. There is some line in the code said :

    &#xA;

    `/* Application developers planning to link against a shared library version of

    &#xA;

      &#xA;
    • libx264 from a Microsoft Visual Studio or similar development environment
    • &#xA;

    • will need to define X264_API_IMPORTS before including this header.
    • &#xA;

    • This clause does not apply to MinGW, similar development environments, or non
    • &#xA;

    • Windows platforms. */`
    • &#xA;

    &#xA;

    But I don't get this line :&#xA;define X264_API_IMPORTS before including this header

    &#xA;

    We can create x264 dll by its configuration and make

    &#xA;

        ./configure --enable-shared&#xA;    make&#xA;

    &#xA;

    but I can not use the dll in my Qt Project.

    &#xA;

    I can make my own dll (in another code) and use it in the project.&#xA;But when I start to use x264 dll in my project I get the following error :

    &#xA;

        C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:&#xA;    &#x27;pulldown_frame_duration&#x27; was not declared in this scope&#xA;    qDebug() &lt;&lt; pulldown_frame_duration[1];&#xA;             ^&#xA;

    &#xA;

  • how to use x264 dll in another project

    7 février 2024, par Hadi Rasekh

    I want to use x264 in my project. There is some line in the code said :

    &#xA;

    `/* Application developers planning to link against a shared library version of

    &#xA;

      &#xA;
    • libx264 from a Microsoft Visual Studio or similar development environment
    • &#xA;

    • will need to define X264_API_IMPORTS before including this header.
    • &#xA;

    • This clause does not apply to MinGW, similar development environments, or non
    • &#xA;

    • Windows platforms. */`
    • &#xA;

    &#xA;

    But I don't get this line :&#xA;define X264_API_IMPORTS before including this header

    &#xA;

    We can create x264 dll by its configuration and make

    &#xA;

        ./configure --enable-shared&#xA;    make&#xA;

    &#xA;

    but I can not use the dll in my Qt Project.

    &#xA;

    I can make my own dll (in another code) and use it in the project.&#xA;But when I start to use x264 dll in my project I get the following error :

    &#xA;

        C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:&#xA;    &#x27;pulldown_frame_duration&#x27; was not declared in this scope&#xA;    qDebug() &lt;&lt; pulldown_frame_duration[1];&#xA;             ^&#xA;

    &#xA;