Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (24)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (4313)

  • qsvenc : Add VDENC support for H264 and HEVC

    5 novembre 2018, par Linjie Fu
    qsvenc : Add VDENC support for H264 and HEVC
    

    Add VDENC(lowpower mode) support for QSV h264 and HEVC

    It’s an experimental function(like lowpower in vaapi) with
    some limitations :
    - CBR/VBR require HuC which should be explicitly loaded via i915
    module parameter(i915.enable_guc=2 for linux kerner version >= 4.16)
    - HEVC VDENC was supported >= ICE LAKE

    use option "-low_power 1" to enable VDENC.

    Signed-off-by : Linjie Fu <linjie.fu@intel.com>

    • [DBH] libavcodec/qsvenc.c
    • [DBH] libavcodec/qsvenc.h
    • [DBH] libavcodec/qsvenc_h264.c
    • [DBH] libavcodec/qsvenc_hevc.c
  • optimize hevc_toolbox encoding to look like x265 encoding in ffmeg

    23 juillet 2021, par Misha

    I am encoding videos from h264 to h265 using ffmpeg. First I used the x265 software version for a 30 sec movie clip reducing the file size from 18Mb to 2Mb and got the following still-frame result in 45 sec&#xA;enter image description here

    &#xA;&#xA;

    Next I used the hevc_videotoolbox hardware accelerated version, first going from 18 to 1.6 Mb and the results were so poor I decided to up the bitrate to 1.5Mbit/s, thus getting a 5.7Mb file in 12 sec. However, the result is clearly inferior to the x265 version despite the almost 3x increase in filesize.

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Any ideas if it is possible to improve the hevc_toolbox quality and still retain the speed advantage ?

    &#xA;&#xA;

    ffmpeg -i test.mp4 -an -c:v libx265 -vtag hvc1 -y test_x265.mp4 &#xA;&#xA;ffmpeg -i test.mp4 -an -c:v hevc_videotoolbox -vtag hvc1 -y -b:v 1.5M test_vt.mp4&#xA;

    &#xA;&#xA;

    I am on a MB pro late 2017 version with kaby lake

    &#xA;

  • avcodec/h264 : add sse2 versions of previous idct functions

    5 avril 2017, par James Darnley
    avcodec/h264 : add sse2 versions of previous idct functions
    

    Kaby Lake Pentium :
    - ff_h264_idct_add_8_sse2 : 1.18x faster than mmxext
    - ff_h264_idct_dc_add_8_sse2 : 1.07x faster than mmxext

    • [DH] libavcodec/x86/h264_idct.asm
    • [DH] libavcodec/x86/h264dsp_init.c