Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (6)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

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

  • Fix the timeout option not working when connecting to a HTTP url that requires authen...

    15 novembre 2014, par Brandon Lees
    Fix the timeout option not working when connecting to a HTTP url that requires authentication.
    

    In http_open_cnx, the patch restores the AVDictionary if connection needs to be re-tried
    because of a authentication/redirect status code.

    Previously, if a 401/407/30x status code was encountered, http_open_cnx would restart at the redo label, but any options
    used by the underlying protocol would be missing because they were removed by the first attempt.

    Signed-off-by : Brandon Lees <brandon@n-hega.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • movenc : Add tfra entries for all tracks in a moof

    12 octobre 2014, par Martin Storsjö
    movenc : Add tfra entries for all tracks in a moof
    

    Previously only tfra entries were added for the first track in each moof.

    The frag_info array used for tfra can also be used for writing
    other kinds of fragment indexes, where it’s more important to
    include all tracks.

    When the separate_moof option is enabled (as in ismv), we write
    a separate moof for each track, so this doesn’t make any difference
    in that case.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
  • lavf : Only initialize s->offset once when using avoid_negative_ts make_zero

    17 novembre 2014, par Martin Storsjö
    lavf : Only initialize s->offset once when using avoid_negative_ts make_zero
    

    When given a stream starting at dts=0, it would previously consider
    s->offset as uninitialized and set an offset when the second packet
    was written, ending up writing two packets with dts=0. By initializing
    this field to AV_NOPTS_VALUE, we make sure that we only initialize it
    once, on the first packet.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mux.c
    • [DBH] libavformat/options.c