Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (47)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (10475)

  • indeo4 : expand allowed quantiser range

    31 mai 2013, par Kostya Shishkov
    indeo4 : expand allowed quantiser range
    

    Indeo 4 has quantiser range 0-31 instead of 0-23 for Indeo 5, and clipping
    quantiser leads to incorrect quantisation and DC prediction on low-quality
    videos.

    This fixes bug 259.

    • [DBH] libavcodec/ivi_common.c
  • avutil/hwcontext_videotoolbox : add frame hwctx to specify color range

    29 décembre 2023, par Zhao Zhili
    avutil/hwcontext_videotoolbox : add frame hwctx to specify color range
    

    VideoToolbox use different identifiers for the same pixel format
    with different color range, like

    kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange
    kCVPixelFormatType_420YpCbCr8BiPlanarFullRange.

    Before the patch, vt_pool_alloc() always use limited range, and it
    will fail for pixel format AV_PIX_FMT_BGRA since there is no limited
    range kCVPixelFormatType_32BGRA.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavutil/hwcontext_videotoolbox.c
    • [DH] libavutil/hwcontext_videotoolbox.h
    • [DH] libavutil/version.h
  • How to create a full length video from images with FFmpeg ?

    14 avril 2021, par Lucas Naoki

    I have more than a thousand images that I want to transform into a 3 minutes video. I tried using this line ffmpeg -r 30 -i "E:/White-box-Cartoonization/test_code/cartoonized_images/$flower%03d.bmp" -c:v libx264 -pix_fmt yuv420p out.mp4 it worked but creates only a 5 seconds video. What do I need to do to turn it into a full length 3 minutes video ?

    &#xA;