Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (56)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5831)

  • Anomalie #2524 (Nouveau) : vieux code dans genie/optimiser ??

    9 février 2012, par Julien -

    Dans .../genie/optimiser.php : optimiser_base_disparus la section # les liens d’auteurs d’articles effaces est t-elle nécessaire ? (vieux code ?) Le code qui suit : $n+= objet_optimiser_liens(array(’auteur’=>’*’),’*’) ; N’effectue t-il pas déjà le boulot (...)

  • 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':
       filter.c:(.text+0x3e5): undefined reference to `av_int_list_length_for_size'
       filter.c:(.text+0x407): undefined reference to `av_int_list_length_for_size'
       filter.c:(.text+0x42d): undefined reference to `av_opt_set_bin'
       filter.c:(.text+0x482): undefined reference to `av_int_list_length_for_size'
       filter.c:(.text+0x4a4): undefined reference to `av_int_list_length_for_size'
       filter.c:(.text+0x4ca): undefined reference to `av_opt_set_bin'
       filter.c:(.text+0x51f): undefined reference to `av_int_list_length_for_size'
       filter.c:(.text+0x541): undefined reference to `av_int_list_length_for_size'
       filter.c:(.text+0x567): undefined reference to `av_opt_set_bin'
       /tmp/cc90K2S5.o: In function `print_frame':
       filter.c:(.text+0x76b): undefined reference to `av_frame_get_channel_layout'
       /tmp/cc90K2S5.o: In function `main':
       filter.c:(.text+0x831): undefined reference to `av_frame_alloc'
       filter.c:(.text+0x83d): undefined reference to `av_frame_alloc'
       filter.c:(.text+0x9de): undefined reference to `av_buffersrc_add_frame_flags'
       filter.c:(.text+0xa16): undefined reference to `av_buffersink_get_frame'
       filter.c:(.text+0xa58): undefined reference to `av_frame_unref'
       filter.c:(.text+0xab6): undefined reference to `av_frame_free'
       filter.c:(.text+0xac5): undefined reference to `av_frame_free'
       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 !

  • 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