Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (69)

  • Les images

    15 mai 2013
  • 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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (8584)

  • lavc/vaapi_hevc : fill rext luma/chroma offset in the right way

    10 juin 2022, par Xu Guangxin
    lavc/vaapi_hevc : fill rext luma/chroma offset in the right way
    

    For range extension, the luma/chroma offset is larger than 8 bits, we
    need fill the 16 bits version.

    Signed-off-by : Xu Guangxin <guangxin.xu@intel.com>
    Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vaapi_hevc.c
  • lavu/hwcontext_qsv : add support for 12bit content on Linux

    6 octobre 2022, par Fei Wang
    lavu/hwcontext_qsv : add support for 12bit content on Linux
    

    P012, Y212 and XV36 are used for 12bit content in FFmpeg VAAPI, so
    these formats should be used in FFmpeg QSV too, however the SDK only
    declares support for P016, Y216 and Y416. So this commit fudged mappings
    between AV_PIX_FMT_P012 and MFX_FOURCC_P016, AV_PIX_FMT_Y212 and
    MFX_FOURCC_Y216, AV_PIX_FMT_XV36 and MFX_FOURCC_Y416.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • How to use ffmpeg Library in electron?

    24 avril 2022, par MrL

    I use ffmpeg in electronic, but uwp can't use the command line, so I want to use ffmpeg library instead, and install "FFI NaPi". After testing, it can call the library, but I don't know C language and how to call ffmpeg library. Can anyone help me ?

    &#xA;

    This is my test of "ffi napi". It can really succeed:

    &#xA;

    c++ code :

    &#xA;

    extern "C" __declspec(dllexport) int add(int a, int b) {&#xA;&#xA;    return 20;&#xA;};&#xA;

    &#xA;

    electron js :

    &#xA;

     var ffi = require(&#x27;ffi-napi&#x27;);&#xA;    var libm = ffi.Library(&#x27;Dll1.dll&#x27;, {&#xA;      &#x27;add&#x27;: [ &#x27;int&#x27;, [ &#x27;int&#x27;, &#x27;int&#x27; ] ],&#xA;    });&#xA;    &#xA;    var rel = libm.add(1,2); // 20&#xA;    console.error(&#x27;rel:&#x27;,rel);&#xA;

    &#xA;

    This is the download website of ffmpeg library:&#xA;https://github.com/wang-bin/avbuild

    &#xA;

    [enter image description here][1]&#xA;[enter image description here][2]&#xA;[enter image description here][3]&#xA;[enter image description here][4]&#xA;&#xA;&#xA;  [1]: https://i.stack.imgur.com/HTMhK.png&#xA;  [2]: https://i.stack.imgur.com/hxsw4.png&#xA;  [3]: https://i.stack.imgur.com/5mDLx.png&#xA;  [4]: https://i.stack.imgur.com/HAjPE.png&#xA;

    &#xA;

    I have no programming knowledge of C + + and do not know how to call these libraries. I just want to edit a video, for example :

    &#xA;

    ffmpeg -i a.mp4 -c -copy b.mp4&#xA;

    &#xA;