Recherche avancée

Médias (91)

Autres articles (51)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (4825)

  • Can't decode HEVC video with DXVA2 and ffmpeg

    10 mai 2018, par Igor

    I can’t use DXVA2 hardware acceleration for decoding of HEVC video with ffmpeg. DXVA2 for H.264 works fine.

    I compiled an official example hw_decode.c from ffmpeg sources :

    https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/hw_decode.c

    When I call av_send_packet() it performs a callback assigned in AVCodecContext->get_format and returns only AV_PIX_FMT_YUV420P for HEVC video instead of AV_PIX_FMT_DXVA2_VLD for all H.264 videos. So HW decoding doesn’t work.

    Software decoding of HEVC works without problems.

    MPC-HC plays fine HEVC video with DXVA2 (CPU loading is low and Task Manager shows work of Video decoder in GPU details). My video card is Geforce 1060.

  • How can I prettify my compiled binary of FFmpeg ?

    2 avril 2019, par Hashim

    After many weeks and a lot of effort, I finally managed to use a Cygwin and MinGW-w64 toolchain to cross-compile a working binary of FFmpeg for Windows, complete with the superior but elusive fdk_aac encoder.

    However, comparing my newly-compiled binary with the official pre-compiled build for Windows makes me feel a little... lacking (first run is the Zeranoe build, second is my own) :

    enter image description here

    Notice how the Zeranoe build’s banner is missing all of the unseemly-looking configure options apart from the external libraries. Along with that, it also has the date that the program was built on inserted right after the GCC version.

    How were the compilers of this build able to add these enhancements to their binary, and how can I do the same ? I’m assuming these are simply GCC or preprocessor options that I can’t find any information on, or maybe there’s more to it than that.

    N.B : I’m aware of the --no-banner switch for FFmpeg, and that’s not what I’m trying to do here.

  • Flutter : How to use flutter_ffmpeg to add overlays like watermarks and texts to a video ?

    29 septembre 2022, par Ryan Wang

    I try to implement the video_editing feature to my app, and I'd tried the Tapioca Package and the Video_Manipulation package but found that they both do not meet my criteria, so I put my last hope on the flutter_ffmpeg package.

    


    But as I read through its official doc on pub.dev, not a thing on my mind but "WHAT THE HECK", I can't understand what those commands are used for, and though I can't find anything related to add widget overlays to a video. And almost no tutorial on the web that explains how to use it.

    


    So if you successfully implemented adding watermarks/texts to a video with the ffmpeg package, please show me how. Thanks !