Recherche avancée

Médias (91)

Autres articles (67)

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

  • 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 formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6046)

  • aaccoder : tweak PNS implementation further

    9 septembre 2015, par Rostislav Pehlivanov
    aaccoder : tweak PNS implementation further
    

    This commit changes a few things about the noise substitution
    logic :
    - Brings back the quantization factor (reduced to 3) during
    scalefactor index calculations.
    - Rejects any zeroed bands. They should be inaudiable and it’s
    a waste transmitting the scalefactor indices for these.
    - Uses swb_offsets instead of incrementing a ’start’ with every
    window group size.
    - Rejects all PNS during short windows.
    Overall improves quality. There was a plan to use the lfg system
    to create the random numbers instead of using whatever the decoder
    uses but for now this works fine. Entropy is far from important here.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aaccoder.c
    • [DH] tests/fate/aac.mak
  • AAC encoder : tweak PNS usage to be more aggressive

    25 septembre 2015, par Claudio Freire
    AAC encoder : tweak PNS usage to be more aggressive
    

    This patch tweaks search_for_pns to be both more
    aggressive and more careful when applying PNS. On
    the one side, it will again try to use PNS on zero
    (or effectively zero) bands. For this, both zeroes
    and band_type have to be checked (some ZERO bands
    aren’t marked in zeroes). On the other side, a more
    accurate rate-distortion measure avoids using PNS
    where it would cause audible distortion.

    Also fixed a small bug in the computation of freq
    that caused PNS usage on low-frequency bands during
    8-short windows. This allows re-enabling PNS during
    8-short.

    • [DH] libavcodec/aaccoder.c
    • [DH] tests/fate/aac.mak
  • AAC encoder : Fix application of M/S with PNS

    26 novembre 2015, par Claudio Freire
    AAC encoder : Fix application of M/S with PNS
    

    When both M/S coding and PNS are enabled, scalefactors
    and coding books would be mistakenly clobbered when setting
    the M/S flag on PNS’d bands. The flag needs to be set to
    signal the generation of correlated noise, but the scalefactors,
    coefficients and the coding books need to be kept intact.

    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c