Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (13)

  • 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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3583)

  • avcodec/movtextenc : fix writing to bytestream on BE arches

    14 octobre 2020, par Andriy Gelman
    avcodec/movtextenc : fix writing to bytestream on BE arches
    

    Fixes fate-binsub-movtextenc on PPC64

    Currently tags are written in reverse order on BE arches. This is fixed
    by using MKBETAG() and AV_RB32() to be arch agnostics.

    Also s->font_count is of type int. On BE arches with 32bit int,
    count = AV_RB16(&s->font_count) will read two most significant bytes
    instead of the least significant bytes. This is fixed by assigning
    s->font_count to count first.

    The final change is modifying the type of len. On BE arches
    the most significant byte of the int was written instead of the least
    significant byte.

    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavcodec/movtextenc.c
  • How to display Picture in picture for video files in .webm format, using NodeJS

    10 octobre 2020, par kurrodu

    Can someone please guide me How I could display one video file inside of another (Picture in picture), I have both the videos in .webm format.

    &#xA;

    Any pointers/ guidance is greatly appreciated.

    &#xA;

  • avfilter/af_headphone : Avoid intermediate buffer III

    25 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Avoid intermediate buffer III
    

    The headphone filter allocates a pair of buffers to be used as
    intermediate buffers lateron : Before every use they are zeroed, then
    some elements of the buffer are set and lateron the complete buffers are
    copied into another, bigger buffer. These intermediate buffers are
    unnecessary as the data can be directly written into the bigger buffer.
    Furthermore, the whole buffer has been zeroed initially and because no
    piece of this buffer is set twice (due to the fact that duplicate
    channel map entries are skipped), it is unnecessary to rezero the part
    of the big buffer that is about to be written to.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_headphone.c