Recherche avancée

Médias (91)

Autres articles (57)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8293)

  • avcodec/mpegvideo_enc : Remove dead block

    5 octobre 2023, par Andreas Rheinhardt
    avcodec/mpegvideo_enc : Remove dead block
    

    None of the mpegvideo encoders support anything but coded frames ;
    and if this were to change, it is unclear whether they would need
    the adjustment here. So remove it.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpegvideo_enc.c
  • avformat/avformat : Remove dead check, write-only assignment

    3 février 2024, par Andreas Rheinhardt
    avformat/avformat : Remove dead check, write-only assignment
    

    For muxers, the internal AVCodecContext is basically unused
    except in avformat_transfer_internal_stream_timing_info()
    (which sets time_base and ticks_per_frame) and
    av_stream_get_codec_timebase() (a getter for time_base).
    This makes ticks_per_frame write-only, so don't set it.

    Also remove an always-false check for the AVCodecContext's
    codec_tag.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/avformat.c
  • Python Azure Function Blob trigger concurrency problem

    22 août 2024, par Mihai Podaru

    I developed an OCR in python using pytesseract and cv2. It takes files for a blob container and extracts text from them. I deployed it to an Azure Function container. I used a container because I need system dependencies (poppler-utils tesseract-ocr ffmpeg libsm6 libxext6).

    &#xA;

    If I simulate the function locally using Azurite I am able to process multiple files at a time. But if I deploy it to Azure, if I upload 2 files at once, the CPU goes to 100% and blocks there. I figured there is a concurrency problem, because it runs well if I configure the host file like this

    &#xA;

    "extensions": {&#xA;    "blobs": {&#xA;      "maxDegreeOfParallelism": 1,&#xA;      ...&#xA;    }&#xA;}&#xA;

    &#xA;

    Can I do something about it or are the libraries/dependencies not compatible with concurrency ?

    &#xA;