Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (64)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6659)

  • lavu/riscv : indent code

    18 novembre 2023, par Rémi Denis-Courmont
    lavu/riscv : indent code
    

    This reindents code to prepare for the next changeset.
    No functional changes.

    • [DH] libavutil/riscv/cpu.c
  • avfilter/vf_ssim : Fix x86 assembly code for SSIM calculation

    31 juillet 2023, par Evgeny Pavlov
    avfilter/vf_ssim : Fix x86 assembly code for SSIM calculation
    

    This commit fixes bug #10495

    The code had several bugs related to post-loop compensation code :
    - test assembly instruction performs bitwise AND operation and
    generate flags used by jz branch instruction. Wrong test condition
    leads to incorrect branching
    - Incorrect compensation code for some branches

    Signed-off-by : Evgeny Pavlov <lucenticus@gmail.com>

    • [DH] libavfilter/x86/vf_ssim.asm
  • C Code Using FFmpeg libraries - Compilation Error

    17 août 2013, par Ardatr

    I've been recently trying to compile C code that uses the FFmpeg libraries ; however, the compilation fails due to a reason that I cannot determine.

    The code that I've been trying to compile is the filtering_audio.c file on the Doxygen Documentation website for FFmpeg (I'll provide the link, since the code is too long to quote here) : http://ffmpeg.org/doxygen/trunk/doc_2examples_2filtering_audio_8c-example.html

    I use gcc to compile the code :

       gcc filter.c -lavformat -lavcodec -lavfilter  -lavutil

    And I get the following undefined reference errors :

       /tmp/cc90K2S5.o: In function `init_filters&#39;:
       filter.c:(.text+0x3e5): undefined reference to `av_int_list_length_for_size&#39;
       filter.c:(.text+0x407): undefined reference to `av_int_list_length_for_size&#39;
       filter.c:(.text+0x42d): undefined reference to `av_opt_set_bin&#39;
       filter.c:(.text+0x482): undefined reference to `av_int_list_length_for_size&#39;
       filter.c:(.text+0x4a4): undefined reference to `av_int_list_length_for_size&#39;
       filter.c:(.text+0x4ca): undefined reference to `av_opt_set_bin&#39;
       filter.c:(.text+0x51f): undefined reference to `av_int_list_length_for_size&#39;
       filter.c:(.text+0x541): undefined reference to `av_int_list_length_for_size&#39;
       filter.c:(.text+0x567): undefined reference to `av_opt_set_bin&#39;
       /tmp/cc90K2S5.o: In function `print_frame&#39;:
       filter.c:(.text+0x76b): undefined reference to `av_frame_get_channel_layout&#39;
       /tmp/cc90K2S5.o: In function `main&#39;:
       filter.c:(.text+0x831): undefined reference to `av_frame_alloc&#39;
       filter.c:(.text+0x83d): undefined reference to `av_frame_alloc&#39;
       filter.c:(.text+0x9de): undefined reference to `av_buffersrc_add_frame_flags&#39;
       filter.c:(.text+0xa16): undefined reference to `av_buffersink_get_frame&#39;
       filter.c:(.text+0xa58): undefined reference to `av_frame_unref&#39;
       filter.c:(.text+0xab6): undefined reference to `av_frame_free&#39;
       filter.c:(.text+0xac5): undefined reference to `av_frame_free&#39;
       collect2: error: ld returned 1 exit status

    I understand that the undefined reference error indicates that it wasn't able to find the functions referenced from filtering_audio.c, but this doesn't make sense, since these functions should exist in the FFmpeg libraries.

    Any help is appreciated, thank you !