Recherche avancée

Médias (91)

Autres articles (43)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (4682)

  • Composite 2 video(.mov) files using ffmpeg

    20 octobre 2012, par eco_bach

    Novice user of ffmpeg but going thru whatever docs I can find online.

    For a current project I will need to composite 2 videos together to create a .flv file.

    Does anyone know the commands to do this ?

  • php script to compress video on fly using ffmpeg [closed]

    3 janvier 2013, par sanjay

    I am trying to compress online videos on fly with ffmpeg and PHP in an Ubuntu environment...
    Can anyone help ?

    Thanks

  • avcodec/cfhddata : Reduce stack usage

    3 septembre 2022, par Andreas Rheinhardt
    avcodec/cfhddata : Reduce stack usage
    

    Creating CFHD RL VLC tables works by first extending
    the codes by the sign, followed by creating a VLC,
    followed by deriving the RL VLC from this VLC (which
    is then discarded). Extending the codes uses stack arrays.

    The tables used to initialize the VLC are already sorted
    from left-to-right in the tree. This means that the
    corresponding VLC entries are generally also ascending,
    but not always : Entries from subtables always follow
    the corresponding main table although it is possible
    for the right-most node to fit into the main table.

    This suggests that one can try to use the final destination
    buffer as scratch buffer for the tables with sign included.
    Unfortunately it works for neither of the tables if one
    uses the right-most part of the RL VLC buffer as scratch buffer ;
    using the left-most part of the RL VLC buffer as scratch buffer
    might work if one traverses the VLC entries from end to start.
    But it works only for the little RL VLC (table 9), not for table 18.

    Therefore this patch uses the RL VLC buffer for table 9
    as scratch buffer for creating the bigger table 18.
    Afterwards the left part of the buffer for table 9 is
    used as scratch buffer to create table 9.

    This fixes the cfhd part of ticket #9399 (if it is not already fixed).
    Notice that I do not consider the previous stack usage excessive.

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

    • [DH] libavcodec/cfhddata.c