Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (111)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (11724)

  • avcodec/libx264 : Simplify copying packet data

    7 novembre 2021, par Andreas Rheinhardt
    avcodec/libx264 : Simplify copying packet data
    

    x264.h : "the payloads of all output NALs are guaranteed to be
    sequential in memory." Therefore we can omit the loop.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libx264.c
  • 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
  • avcodec/mpeg4videodec : Fix data race when initializing VLCs

    4 janvier 2022, par Andreas Rheinhardt
    avcodec/mpeg4videodec : Fix data race when initializing VLCs
    

    Both the MPEG-4 parser as well as the decoder initialized
    several VLCs. There is a "static int done = 0 ;" in order to
    guard against initializing these multiple times, but this does
    not work when several threads try to initialize these VLCs
    concurrently, which can happen when initializing several parsers
    at the same time (they don't use the global lock that is used
    for codecs without the FF_CODEC_CAP_INIT_THREADSAFE cap ; actually,
    they don't use any lock at all).

    Since ff_mpeg4_decode_picture_header() now aborts early when called
    from the parser, it no longer needs to have these VLCs initialized
    at all. This commit therefore does exactly this.

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

    • [DH] libavcodec/mpeg4video.h
    • [DH] libavcodec/mpeg4video_parser.c
    • [DH] libavcodec/mpeg4videodec.c