Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (73)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (10118)

  • Revision a3ef7d5a50 : Add VP9 frame-parallel unit test. Make sure VP9 frame-parallel decode passes al

    8 août 2014, par hkuang

    Changed Paths :
     Modify /test/codec_factory.h


     Modify /test/decode_test_driver.cc


     Modify /test/decode_test_driver.h


     Modify /test/test_vector_test.cc



    Add VP9 frame-parallel unit test.

    Make sure VP9 frame-parallel decode passes all the standard
    test vectors. Only test running with 2,3,4 threads now.

    Also refactor the video decode test driver to support passing
    in decode flags which is used to enable frame-parallel decode.

    Change-Id : I6a712464232c2e13681634951c7e176312522e1e

  • Ffmpeg : Improve results with h264_nvenc video codec

    7 avril 2024, par Sulli

    I was very happy to discover ffmpeg is compatible with Cuda as using a GPU speeds up my processing time by 10 at least. But I was very sad to discover codec libx264 can’t be used and h264_nvenc is of much poorer quality (my videos are visibly pixelated, to the point I actually don’t see why ffmpeg was made compatible with Cuda in the first place :) ).

    


    I did not tweak my ffmpeg commands at all when I switched from libx264 to h264_nvenc, but maybe there are some parameters I could add to get a better quality ? Even if it leads to longer processing time, I don’t mind trading a bit of that for a better quality. Or maybe another video codec I wouldn’t know about ?

    


    I usually run my scripts on Google Colab if that matters (tesla T4 graphics card, Driver Version : 535.104.05, CUDA Version : 12.2)

    


  • lavc/qsv_hevc : correct QSV HEVC default plugin on Windows

    12 décembre 2018, par Zhong Li
    lavc/qsv_hevc : correct QSV HEVC default plugin on Windows
    

    1. Old logic meaned : everywhere, except Windows, ffmpeg has to use HW
    acceleration, but on Windows ffmpeg has to use (unavailable) software
    HEVC by default
    2. Software HEVC is available only if you provide corresponding
    software MediaSDK library, which isn't provided with ffmpeg. More
    information could be found in
    https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/samples/readme-encode_linux.pdf
    3. HW HEVC decoding/encoding are available on Windows in the driver by default

    Note : Default case should be the most common case but this change still has potential risk
    on windows if HW path is not supported(or doesn't work as expection).
    (See the historical disscution : https://lists.libav.org/pipermail/libav-devel/2016-November/080419.html).
    In such case, two options suggested :
    1. Use the option "-load_plugin hevc_sw" to switch SW path manually.
    2. Or report bug to Intel windows driver if your GPU can support HEVC HW codec.
    (HEVC decoding is supported since Braswell, and encoding supported since Skylake)

    Patch started by Landgraph. Add similar change for hevc decoder and bump a new version.

    Reviewed-by : Mark Thompson <sw@jkqxz.net>
    Reviewed-by : Maxym Dmytrychenko <maxim.d33@gmail.com>
    Signed-off-by : Landgraph <me@landgraph.ru>
    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavcodec/qsvdec_h2645.c
    • [DH] libavcodec/qsvenc_hevc.c
    • [DH] libavcodec/version.h