Recherche avancée

Médias (91)

Autres articles (42)

  • 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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8547)

  • avformat/matroskadec : Improve invalid length error handling

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Improve invalid length error handling
    

    1. Up until now, the error message for EBML numbers whose length exceeds
    the limits imposed upon them because of the element's type did not
    distinguish between known-length and unknown-length elements. As a
    consequence, the numerical value of the define constant
    EBML_UNKNOWN_LENGTH was emitted as part of the error message which is
    of course not appropriate. This commit changes this by adding error
    messages designed for unknown-length elements.

    2. We impose some (arbitrary) sanity checks on the lengths of certain
    element types ; these checks were conducted before the checks depending
    on whether the element exceeds its containing master element. Now the
    order has been reversed, because a failure at the (formerly) latter
    check implies that the file is truly erroneous and not only fails our
    arbitrary length limit. Moreover, this increases the informativeness of
    the error messages.

    3. Furthermore, the error message in general has been changed by replacing
    the type of the element (something internal to this demuxer and
    therefore suitable as debug output at best, not as an error message
    intended for ordinary users) with the element ID. The element's position
    has been added, too.

    4. Finally, the length limit for EBML_NONE elements has been changed so
    that all unknown-length elements of EBML_NONE-type trigger an error.
    This is done because unknown-length elements can't be skipped and need
    to be parsed, but there is no syntax to parse available for EBML_NONE
    elements. This is done in preparation for a further patch which allows
    more unknown-length elements than just clusters and segments.

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

    • [DH] libavformat/matroskadec.c
  • lavu/opt : fix range check logic in set_format()

    16 décembre 2013, par Stefano Sabatini
    lavu/opt : fix range check logic in set_format()
    

    In particular, allow to reject undefined values. Previously the code
    was only accepting values in the range -1 .. NB_FORMATS-1.

    • [DH] libavutil/opt.c
  • VLC For Android : How to play mpeg2 ts file without PAT

    4 juin 2014, par berke

    I am developing media player for android with open source VLC player. What I want is to play .ts file that does not have PAT.

    How to play this file in android with vlc ?(programatically)

    In windows vlc player can play this video by running vlc.exe —demux ffmpeg

    How can I achieve this with android vlc lib ?

    The reason that I cannot play this video is because vlc cannot find PAT.

    Can you help about this ?