Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (91)

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

  • 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" ;

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5040)

  • How to get language for embedded subtitles in video file using FFMPEG libraries

    18 septembre 2024, par helgovic

    I have seen lots of examples on how to get the language codes using the command line interface, but how do you get them using the libraries ?

    


  • lavfi/subtitles : introduce stream_index

    1er mai 2014, par ValdikSS
    lavfi/subtitles : introduce stream_index
    

    Signed-off-by : ValdikSS <iam@valdikss.org.ru>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_subtitles.c
  • avcodec/movtextenc : Fix encoding of subtitles with multiple rects

    30 novembre 2021, par Andreas Rheinhardt
    avcodec/movtextenc : Fix encoding of subtitles with multiple rects
    

    The format of a mov_text (3GPP Timed Text) sample is :

    uint16_t text_length ;
    uint8_t text[text_length] ;
    TextSampleModifierBox text_modifier ;

    Yet in case our encoder receives an AVSubtitle with multiple
    ASS AVSubtitleRects, it creates something like this :
    uint16_t text_length ;
    uint8_t text[text_length_1] ;
    TextSampleModifierBox text_modifier_1 ;
    uint8_t text[text_length_2] ;
    TextSampleModifierBox text_modifier_2 ;
    ...

    where text_length is the sum of all the text_length_*.
    This commit fixes this by writing the TextSampleModifierBoxes only
    after all the rects have been written.

    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/movtextenc.c