Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (46)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • HTML5 audio and video support

    13 avril 2011, par

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

Sur d’autres sites (9055)

  • 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 ?

    


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

    


    c++ code :

    


    extern "C" __declspec(dllexport) int add(int a, int b) {

    return 20;
};


    


    electron js :

    


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


    


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

    


    [enter image description here][1]
[enter image description here][2]
[enter image description here][3]
[enter image description here][4]


  [1]: https://i.stack.imgur.com/HTMhK.png
  [2]: https://i.stack.imgur.com/hxsw4.png
  [3]: https://i.stack.imgur.com/5mDLx.png
  [4]: https://i.stack.imgur.com/HAjPE.png


    


    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 :

    


    ffmpeg -i a.mp4 -c -copy b.mp4


    


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