Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (39)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (3993)

  • Revert "avutil/channel_layout : av_channel_layout_describe_bprint : Check for buffer...

    4 juillet 2022, par James Almer
    Revert "avutil/channel_layout : av_channel_layout_describe_bprint : Check for buffer end"
    

    The doxy for av_channel_layout_describe() states that the user should look
    at the return value to check if the string was truncated. Returning an error
    code in this scenario goes against this and is an API break.

    A proper fix for the timeout was applied to the Matroska demuxer in 94901a9518.

    This reverts commit 8154cb7c2ff2afcb1a0842de8c215b7714c814d0.

    • [DH] libavutil/channel_layout.c
  • Thumbnails from S3 Videos using FFMPEG - "No such file or directory : '/bin/ffmpeg'"

    28 juin 2022, par Nico

    I am trying to generate thumbnails from videos in an S3 bucket every x frames by following this documentation : https://aws.amazon.com/blogs/media/processing-user-generated-content-using-aws-lambda-and-ffmpeg/

    


    I am at the point where I'm testing the Lambda code provided in the documentation, but receive this error in CloudWatch Logs :

    


    enter image description here

    


    Here is the portion of the Lambda code associated with this error :

    


    enter image description here

    


    Any help is appreciated. Thanks !

    


  • avcodec/libx26[45] : add udu_sei option to import user data unregistered SEIs

    25 décembre 2021, par Limin Wang
    avcodec/libx26[45] : add udu_sei option to import user data unregistered SEIs
    

    Most of user data unregistered SEIs are privated data which defined by user/
    encoder. currently, the user data unregistered SEIs found in input are forwarded
    as side-data to encoders directly, it'll cause the reencoded output including some
    useless UDU SEIs.

    I prefer to add one option to enable/disable it and default is off after I saw
    the patch by Andreas Rheinhardt :

    https://patchwork.ffmpeg.org/project/ffmpeg/patch/AM7PR03MB66607C2DB65E1AD49D975CF18F7B9@AM7PR03MB6660.eurprd03.prod.outlook.com/

    How to test by cli :
    ffmpeg -y -f lavfi -i testsrc -c:v libx264 -frames:v 1 a.ts
    ffmpeg -y -i a.ts -c:v libx264 -udu_sei 1 b.ts
    ffmpeg -y -i a.ts -c:v libx264 -udu_sei 0 c.ts

    # check the user data unregistered SEIs, you'll see two UDU SEIs for b.ts.
    # and mediainfo will show with wrong encoding setting info
    ffmpeg -i b.ts -vf showinfo -f null -
    ffmpeg -i c.ts -vf showinfo -f null -

    This fixes tickets #9500 and #9557.

    Reviewed-by : "zhilizhao(赵志立)" <quinkblack@foxmail.com>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] doc/encoders.texi
    • [DH] libavcodec/libx264.c
    • [DH] libavcodec/libx265.c
    • [DH] libavcodec/version.h