Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (81)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (3778)

  • avcodec/hevc_sei : fix amount of bits skipped when reading picture timing SEI message

    6 mai 2017, par James Almer
    avcodec/hevc_sei : fix amount of bits skipped when reading picture timing SEI message
    

    The code was skipping the entire reported SEI message size regardless of
    the amount of bits read.
    While in theory safe for NALU where the picture timing SEI message is alone
    or at the end as we're using the checked bitstream reader, it isn't in any
    other situation, where every SEI message in the NALU after the picture
    timing one would potentially fail to parse.

    Change the function name to one more in line with the rest of file, and
    remove the bogus "Skipped SEI" debug message while at it.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_sei.c
  • How do I encode a series of WebP image files into a WebM video ? [on hold]

    18 mars 2015, par Tony Nardi

    I have looked into tools like ffmpeg, libvpx, and VP8. I have not found any examples that illustrate the exact problem I am attempting to solve.

    My goal is to use a command, like the one found here to encode a series of image files to a video. I would prefer, however, to use WebP as my series of images and encode them to a WebM video.

    I have also looked at using the VP8 encoder directly, but the examples assume using a YUV input file.

    Also, there is an example here to convert PNG files to a WebM video. This is very close to what I want to do !

    I am fairly new to all of these concepts and tools, but it seems like WebP is pretty much a single WebM frame with a different container format. It seems pretty simple in theory to encode many WebP images to a single WebM video.

    Any help, whether a solution or documents for me to read, would be greatly appreciated. Thanks !

  • avformat/mp3dec : improve junk skipping heuristic

    20 octobre 2015, par wm4
    avformat/mp3dec : improve junk skipping heuristic
    

    Commit 2b3e9bbfb529e6bde238aeb511b55ebe461664c8 caused problems for a
    certain API user :

    https://code.google.com/p/chromium/issues/detail?id=537725
    https://code.google.com/p/chromium/issues/detail?id=542032

    The problem seems rather arbitrary, because if there’s junk, anything
    can happen. In this case, the imperfect junk skipping just caused it to
    read different junk, from what I can see.

    We can improve the accuracy of junk detection by a lot by checking if 2
    consecutive frames use the same configuration. While in theory it might
    be completely fine for the 1st frame to have a different format than the
    2nd frame, it’s exceedingly unlikely, and I can’t think of a legitimate
    use-case.

    This is approximately the same mpg123 does for junk skipping. The
    set of compared header bits is the same as the libavcodec mp3 parser
    uses for similar purposes.

    • [DH] libavformat/mp3dec.c