Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (25)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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 ;

Sur d’autres sites (4298)

  • lavc/qsvenc : use VBR if maxrate is not specified on Windows

    1er septembre 2022, par Haihao Xiang
    lavc/qsvenc : use VBR if maxrate is not specified on Windows
    

    Currently AVBR is disabled and VBR is the default method if maxrate is
    not specified on Linux, but AVBR is the default one if maxrate is not
    specified on Windows. In order to make user experience better accross
    Linux and Windows, use VBR by default on Windows if maxrate is not
    specified. User need to set both avbr_accuracy and avbr_convergence to
    non-zero explicitly and not to specify maxrate if AVBR is expected.

    In addition, AVBR works for H264 and HEVC only in the SDK.

    $ ffmpeg.exe -v verbose -f lavfi -i yuvtestsrc -vf "format=nv12" -c:v
    vp9_qsv -f null -

    • [DH] doc/encoders.texi
    • [DH] libavcodec/qsvenc.c
    • [DH] libavcodec/qsvenc.h
    • [DH] libavcodec/qsvenc_h264.c
    • [DH] libavcodec/qsvenc_hevc.c
  • ffmpeg - how to build paths on windows

    7 décembre 2016, par Thomas

    I am building a command line for ffmpeg and I am going crazy. It seems like the tool has an abnormal path system and I can’t find any reliable documentation.

    Using Windows, I have a movie file at : "d :\test\movie.mp4"
    if we take the following command :

    fmpeg -i <myfile> -vf "select=gt(scene\,0.5), scale=640:360" -vsync vfr thumbnails%03d.png
    </myfile>

    I tried to build the the following ways :

    d:\test\movie.mp4
    d:\\test\movie.mp4
    d\\:\\test\movie.mp4
    d:\\:/test/movie.mp4

    It seems like only the 4th one work when called from a C# program, but doesn’t work in command line.

    Is there any documentation that explains this properly ? from what I gather, the drive letter has to be followed by double slashed then the column and I can’t figure out the reason.

  • lavc/qsv : fallback to the default mfx implementation for internal session on Windows

    15 mai 2023, par Haihao Xiang
    lavc/qsv : fallback to the default mfx implementation for internal session on Windows
    

    The mfx implementation based on D3D11 is expected for an internal
    session on Windows, however sometimes this implemntation is not
    supported [1]. A fallback to the default mfx implementation is added in
    this patch.

    [1] https://github.com/intel/cartwheel-ffmpeg/issues/246

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/qsv.c