Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (30)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (4825)

  • Revision 1ca4d51b2e : Refactor to remove GLOBAL_MOTION Make the vp9_int_pro_motion_estimation() funct

    11 mars 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_mcomp.c



    Refactor to remove GLOBAL_MOTION

    Make the vp9_int_pro_motion_estimation() function return zero
    motion vector if high bit depth is turned on, instead of removing
    it from compiled codes.

    Change-Id : Ia48f010eb590b2d517d5678c394110b326a1a95e

  • lavc/vc1dsp : R-V V vc1_unescape_buffer

    12 mai 2024, par Rémi Denis-Courmont
    lavc/vc1dsp : R-V V vc1_unescape_buffer
    

    Notes :
    - The loop is biased toward no unescaped bytes as that should be most common.
    - The input byte array is slid rather than the (8 times smaller) bit-mask,
    as RISC-V V does not provide a bit-mask (or bit-wise) slide instruction.
    - There are two comparisons with 0 per iteration, for the same reason.
    - In case of match, bytes are copied until the first match, and the loop is
    restarted after the escape byte. Vector compression (vcompress.vm) could
    discard all escape bytes but that is slower if escape bytes are rare.

    Further optimisations should be possible, e.g. :
    - processing 2 bytes fewer per iteration to get rid of a 2 slides,
    - taking a short cut if the input vector contains less than 2 zeroes.
    But this is a good starting point :

    T-Head C908 :
    vc1dsp.vc1_unescape_buffer_c : 12749.5
    vc1dsp.vc1_unescape_buffer_rvv_i32 : 6009.0

    SpacemiT X60 :
    vc1dsp.vc1_unescape_buffer_c : 11038.0
    vc1dsp.vc1_unescape_buffer_rvv_i32 : 2061.0

    • [DH] libavcodec/riscv/vc1dsp_init.c
    • [DH] libavcodec/riscv/vc1dsp_rvv.S
  • How to convert Raw frames in a video file in C language ?

    3 décembre 2020, par Nicola Revelant

    My C program generates raw frames, using either a pixel matrix or a linear pixel vector (I prefer the matrix for efficiency) ; but I also want to generate a video by merging all the frames. The FFmpeg library seems so complex and poorly documented so if anyone knows how simple it is to do it ...

    


    Please don't advise me how to use the standalone Linux ffmpeg command because it is not usable for this purpose.

    


    PS. It is used to generate Mandelbrot videos.