Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (77)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9529)

  • aarch64 : me_cmp : Don't do uaddlv once per iteration

    12 juillet 2022, par Martin Storsjö
    aarch64 : me_cmp : Don't do uaddlv once per iteration
    

    The max height is currently documented as 16 ; the max difference per
    pixel is 255, and a .8h element can easily contain 16*255, thus keep
    accumulating in two .8h vectors, and just do the final accumulationat the
    end. This should work for heights up to 256.

    This requires a minor register renumbering in ff_pix_abs16_xy2_neon.

    Before : Cortex A53 A72 A73 Graviton 3
    pix_abs_0_0_neon : 97.7 47.0 37.5 22.7
    pix_abs_0_1_neon : 154.0 59.0 52.0 25.0
    pix_abs_0_3_neon : 179.7 96.7 87.5 41.2
    After :
    pix_abs_0_0_neon : 96.0 39.2 31.2 22.0
    pix_abs_0_1_neon : 150.7 59.7 46.2 23.7
    pix_abs_0_3_neon : 175.7 83.7 81.7 38.2

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/me_cmp_neon.S
  • c++ - ffmpeg yadif deinterlacing

    3 juin 2015, par f3r83

    I’m trying deinterlacing video with ffmpeg in my C++ program.
    First of all, i used avpicture_deinterlacebut is deprecated.

    Looking for more information, I’ve tried avfilter_get_by_name("yadif")after avfilter_register_all()but always return NULL. I’ve tried the next code too, but still not working. I’ve tried different parameters in avfilter_init_strfunction buterris always less than 0, that means there is an error.

    int err;
    // Register all built-in filters
    avfilter_register_all();

    // Find the yadif filter
    AVFilter *yadif_filter = avfilter_get_by_name("buffer");

    AVFilterContext *filter_ctx;

    // Create the filter context with yadif filter
    avfilter_open(&amp;filter_ctx, yadif_filter, NULL);

    // Init the yadif context with "1:-1" option
    err = avfilter_init_str(filter_ctx, "\"yadif=1:-1\"");

    I know filtering_video.c file is a good start point to understand how to build a filter but I don’t want to build one, I only need to use the yadif deinterlacing filter. I have the AVFramebut I don’t know how to apply de yadif filter to it.

    Any help could be welcome.

  • x86/hevc_sao : fix loading of RIP address

    6 février 2015, par James Almer
    x86/hevc_sao : fix loading of RIP address
    

    pb_eo must be handled as a rip relative address for MSVC64, so an
    intermediate register is needed. Should fix link failures.

    Suggested by Hendrik Leppkes and Christophe Gisquet.

    Tested-By : Hendrik Leppkes <h.leppkes@gmail.com>
    Reviewed-by : Christophe Gisquet <christophe.gisquet@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/x86/hevc_sao.asm