Recherche avancée

Médias (91)

Autres articles (75)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

Sur d’autres sites (7068)

  • libavcodec : MIPS : MMI : Move sp out of the clobber list

    18 juillet 2020, par Jiaxun Yang
    libavcodec : MIPS : MMI : Move sp out of the clobber list
    

    GCC complains :
    warning : listing the stack pointer register ‘$29’ in a clobber
    list is deprecated [-Wdeprecated]

    Actually stack pointer was restored at the end of the inline assembly
    so there is no reason to add it to the clobber list.

    Also use $sp insted of $29 to make our intention much more clear.

    Signed-off-by : Jiaxun Yang <jiaxun.yang@flygoat.com>
    Reviewed-by : Shiyou Yin <yinshiyou-hf@loongson.cn>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/h264dsp_mmi.c
  • How to list device options in ffmpeg with its avdevice C++ API ?

    7 avril 2024, par Pavel Saenko

    How to list all available device("dshow and v422 source for example") options(formats/resolutions/fps) and chose the preferred one from the C++ API ?

    &#xA;

    I know that it is possible using CLI

    &#xA;

    ffmpeg -f dshow -list_options true -i video="Integrated Camera"&#xA;

    &#xA;

    But how to use it into my C++ application ?

    &#xA;

    I tried to find some useful fields inside the AVDeviceInfoList struct, but it doesn`t contains any options list.

    &#xA;

     AVDeviceInfoList* deviceList;&#xA; int deviceCount = avdevice_list_input_sources(inFormat, nullptr, nullptr, &amp;deviceList);&#xA;&#xA; for (int i = 0; inb_devices; &#x2B;&#x2B;i) {&#xA;     qDebug()&lt;devices[i]->device_name;&#xA;     qDebug()&lt;devices[i]->media_types[0];&#xA;     qDebug()&lt;devices[i]->device_description;&#xA; }&#xA;

    &#xA;

  • Revision 7e0d0de211 : Refactor inverse_transform_block argument list Replace block index with transfo

    8 juillet 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/decoder/vp9_decodeframe.c



    Refactor inverse_transform_block argument list

    Replace block index with transform type in the argument list. This
    allows to save an extra fetch to the prediction mode. For pedestrian
    area 1080p coded at 5 Mbps with single tile, the average decoding
    speed goes up from 80.55 fps (before the refactoring series) to
    81.13 fps.

    Change-Id : Icbebf84ce63c19c0c92f3690ed201f6c3eab7881