Recherche avancée

Médias (91)

Autres articles (98)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (9942)

  • avformat/oggenc : Avoid allocating and copying when writing page data

    3 mai 2020, par Andreas Rheinhardt
    avformat/oggenc : Avoid allocating and copying when writing page data
    

    When the Ogg muxer writes a page, it has to do three things : It needs to
    write a page header, then it has to actually copy the page data and then
    it has to calculate and write a CRC checksum of both header as well as
    data at a certain position in the page header.

    To do this, the muxer used a dynamic buffer for both writing as well as
    calculating the checksum via an AVIOContext's feature to automatically
    calculate checksums on the data it writes. This entails an allocation of
    an AVIOContext, of the opaque specific to dynamic buffers and of the
    buffer itself (which may be reallocated multiple times) as well as
    memcopying the data (first into the AVIOContext's small write buffer,
    then into the dynamic buffer's big buffer).

    This commit changes this : The page header is no longer written into a
    dynamic buffer any more ; instead the (small) page header is written into
    a small buffer on the stack. The CRC is then calculated directly via
    av_crc() on both the page header as well as the page data. Then both the
    page header and the page data are written.

    Finally, ogg_write_page() can now no longer fail, so it has been
    modified to return nothing ; this also fixed a bug in the only caller of
    this function : It didn't check the return value.

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

    • [DH] libavformat/oggenc.c
  • avformat/movenc : initialize pts/dts of timecode packet

    14 mars 2022, par Limin Wang
    avformat/movenc : initialize pts/dts of timecode packet
    

    Fix below error message when timecode packet is written.
    "Application provided duration : -9223372036854775808 / timestamp : -9223372036854775808 is out of range for mov/mp4 format"

    try to reproduce by :
    ffmpeg -y -f lavfi -i color -metadata "timecode=00:00:00:00" -t 1 test.mov

    Note although error message is printed, the timecode packet will be written anyway. So
    the patch 2/2 will try to change the log level to warning.

    Fixes ticket #9488

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/movenc.c
  • How to compile avconv with libx264 on Ubuntu 12.04 LTS (Precise Pangolin) ?

    1er janvier 2015, par Kugutsumen

    Is there a step-by-step guide on how to compile avconv in Ubuntu ?

    It seems hard to search for any tutorial with avconv compared to ffmpeg.